﻿body {
    font-family: "Tahoma", sans-serif;
    background-color: #FBEED3;
}

.login-container {
    min-height: 100vh;
}

.left-section {
    background-color: #5A3A00;
    color: #E1B97C;
}

    .left-section p {
        color: #FBEED3;
        font-size: 1rem;
    }

.logo-icon {
    font-size: 80px;
    color: #E1B97C;
}

.right-section {
    background-color: #FBEED3;
}

.btn-custom {
    background-color: #E1B97C;
    color: #fff;
    transition: background-color 0.2s ease-in-out;
}

    .btn-custom:hover {
        background-color: #d6a85d;
    }

.passwordInput {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 73%;
    left: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #7a7a7a;
}

.form-label {
    font-weight: bold;
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
    border: none;
    border-radius: 8px;
}