body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0A0946, #2A285A);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #333;
}

#login-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #0A0946;
    text-align: center;
}

#login-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.highlight {
    color: rgb(208, 204, 96);
}

#form-login {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    transition: border 0.3s;
}

.input-group input:focus {
    border-color: #0A0946;
    box-shadow: 0 0 5px rgba(10, 9, 70, 0.5);
}

.icon {
    position: absolute;
    left: 12px;
    font-size: 20px;
    color: #666;
}


button[type="submit"] {
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    background-color: #0A0946;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: rgb(208, 204, 96);
    color: #0A0946;
}

#erro-login {
    display: none;
    font-size: 14px;
    text-align: center;
}
#erro-login.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
}

@media (max-width: 768px) {
    #login-container {
        width: 90%;
        padding: 20px;
    }

    #login-title {
        font-size: 28px;
    }
}
