input[type="text"],
input[type="password"],
textarea,
textarea.form-control {
    height: 48px;
    margin: 0;
    padding: 12px 14px;
    vertical-align: middle;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #0f172a;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

textarea,
textarea.form-control {
    height: auto;
    min-height: 110px;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 24px;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
textarea.form-control:focus {
    outline: 0;
    background: #ffffff;
    border: 1px solid #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18), 0 1px 2px rgba(15, 23, 42, 0.08);
}

input[type="text"]:hover,
input[type="password"]:hover,
textarea:hover,
textarea.form-control:hover {
    background: #f8fafc;
}

input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
textarea::-moz-placeholder,
textarea.form-control::-moz-placeholder { color: #94a3b8; }
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
textarea.form-control:-ms-input-placeholder { color: #94a3b8; }
input[type="text"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder,
textarea.form-control::placeholder { color: #94a3b8; }

button.btn {
    height: 48px;
    margin: 0;
    padding: 0 18px;
    vertical-align: middle;
    background: #2563eb;
    border: 1px solid #2563eb;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
    border-radius: 12px;
    text-shadow: none;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

button.btn:hover { background: #1d4ed8; border-color: #1d4ed8; color: #fff; }
button.btn:active { outline: 0; background: #1e40af; border-color: #1e40af; box-shadow: 0 6px 12px rgba(30, 64, 175, 0.2); }
button.btn:focus { outline: 0; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18), 0 6px 12px rgba(37, 99, 235, 0.18); }
button.btn:active:focus, button.btn.active:focus { outline: 0; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18), 0 6px 12px rgba(30, 64, 175, 0.2); }