/* Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #060F1E;
    color: #E6F1FF;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    background-color: #0A192F;
    border: 1px solid #112240;
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

h1, h2, h3 {
    color: #E6F1FF;
    font-weight: 600;
}

h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.subtitle {
    color: #8892B0;
    margin-bottom: 28px;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #E6F1FF;
    font-weight: 500;
    font-size: 0.95rem;
}

input {
    width: 100%;
    padding: 12px 16px;
    background-color: #060F1E;
    border: 1px solid #112240;
    border-radius: 8px;
    color: #E6F1FF;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input:focus {
    outline: none;
    border-color: #64FFDA;
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.1);
}

input::placeholder {
    color: #4a5578;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    background-color: transparent;
    color: #64FFDA;
    border: 1.5px solid #64FFDA;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background-color: rgba(100, 255, 218, 0.07);
}

.btn-primary {
    background-color: #64FFDA;
    color: #060F1E;
    border: none;
}

.btn-primary:hover {
    background-color: #4ad4b3;
}

.text-muted {
    color: #8892B0;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 24px;
}

.mb-4 {
    margin-bottom: 24px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-error {
    background-color: rgba(255, 80, 80, 0.1);
    border: 1px solid #ff5050;
    color: #ff8080;
}

.alert-success {
    background-color: rgba(100, 255, 218, 0.05);
    border: 1px solid #64FFDA;
    color: #64FFDA;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #8892B0;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #112240;
}

.divider span {
    padding: 0 10px;
    font-size: 0.9rem;
}

a {
    color: #64FFDA;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}