body {
    background-color: #fff5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-container {
    background-color: #a32433;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: 400px;
    color: white;
}
.form-control {
    border-radius: 5px;
}
.btn-login {
    background-color: white;
    color: #a32433;
    border-radius: 20px;
    padding: 10px;
    font-weight: bold;
}
.btn-login:hover {
    background-color: #c13545;
    color: white;
}
.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('wave.png') no-repeat;
    background-size: cover;
}
body {
    background: url('../img/bg.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo {
    width: 5vh;
    height: auto;
}
.header {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text {
    color: #9C2342;  /* Match your brand color */
    font-size: 18px;
}
#showPass {
    display:inline-block;
    margin-left:-40px;
  }
  .field-icon {
    float: right;
    margin-right: 10px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
  }
  .alert {
       
    padding: 0.5rem 0.5rem !important;
}  .nav-link {
    color: #a32433;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}
.nav-link.active {
    opacity: 1;
    font-weight:400;
}
.nav-link:hover {
    color: #c86773 !important;
}
.field-icon {
            float: right;
            margin-left: -25px;
            margin-top: -25px;
            position: relative;
            z-index: 2;
            color: #a32433;
        }
        #toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            background-color: white;
        }
        .toast {
            background-color: white;
            color: #4CAF50;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            animation: fadeInOut 4s forwards;
        }
        .toast.error {
            color: #f44336;
        }
        .toast.warning {
            color: #ff9800;
        }
        .toast.info {
            color: #2196F3;
        }
        @keyframes fadeInOut {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            10% {
                opacity: 1;
                transform: translateY(0);
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-20px);
            }
        }