* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #f0f4fa 0%, #e6eff7 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a202c;
}

.card-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: 0 10px 40px rgba(0, 50, 150, 0.05);
    text-align: center;
}

.logo-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form {
    text-align: left;
}

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

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input::placeholder {
    color: #94a3b8;
}

.input-group input:focus {
    border-color: #007aff;
}

.btn-submit {
    width: 100%;
    background-color: #1a5eb8;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-submit:hover {
    background-color: #124a96;
}

.footer-text {
    margin-top: 25px;
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.4;
}

/* Responsividade para Celulares */
@media (max-width: 480px) {
    .card-container {
        padding: 15px;
    }
    .card {
        padding: 30px 20px;
    }
    .title {
        font-size: 20px;
    }
}
