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

/* adicionei um background pq acho que fica menos "branco" o sistema, mas podem remover caso não aprovem */

body {
    font-family: var(--font);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secundary-color) 100%); 
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo {
    width: 200px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
}

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

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.input-container {
    position: relative;
}

input {
    width: 100%;
    padding: 12px 16px;
    padding-right: 45px;
    border: 1px solid black;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    background: white;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    color: #6b7280;
    font-size: 16px;
}

.input-icon:hover {
    opacity: 0.8;
}

.forgot-password {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-button {
    width: 70%;
    background: var(--secundary-color);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 20px;
    margin-bottom: 30px;
}

.login-button:hover {
    background: var(--primary-color);
}

.login-button:active {
    transform: translateY(1px);
}

.divider {
    height: 1px;
    background: #e5e7eb;
    margin: 30px 0;
}

.signup-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.signup-link {
    color: var(--button-color-2);
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover {
    text-decoration: underline;
}

.email-icon {
    color: #6b7280;
}

.eye-icon {
    color: #6b7280;
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }
}