*{
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
}

.login-container {
    min-height: 100vh;
}

.login-image-side {
    padding: 0;
}

.login-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.login-form-side {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.login-form-container {
    width: 100%;
    max-width: 420px;
}
.logo {
    max-width: 180px;
    margin-bottom: 2rem;
}
.form-control:focus {
    border-color: #8a4fff;
    box-shadow: 0 0 0 0.25rem rgba(138, 79, 255, 0.25);
}
.form-control {
    padding: 1rem 1rem;
    border-radius: 0.5rem;
}
.btn-login {
    background-color: #8a4fff;
    color: #fff;
    font-weight: 600;
    padding: 0.8rem;
    border-radius: 0.5rem;
    border: none;
    transition: all 0.3s ease;
}
.btn-login:hover {
    background-color: #7a3ee6;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.forgot-password-link {
    text-decoration: none;
    color: #8a4fff;
    font-size: 0.9rem;
}
.forgot-password-link:hover {
    text-decoration: underline;
}

.form-control:focus {
    border-color: #8a4fff;
    box-shadow: none;
}

.invalid-input{
    color: #dc3545;
}

.password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}


.btn-eye {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 1;
}

#password-error {
    /* position: absolute; */
    /* bottom: -20px; */
    /* left: 0;
    font-size: 0.9rem;
    color: red;
    display: none;
    margin-top: 20px; */
}

.btn-eye i {
    color: #6c757d;
    font-size: 1rem;
}

.pass-input {
    padding-right: 45px !important;
}


.carousel-item {
    text-align: center;
    padding: 50px 0;
    background-color: #f8fafc;
}
.carousel-item img {
    width: 400px;
    /* width: auto;
    height: auto; */
    margin: auto;
}
.carousel-indicators {
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0;
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #793ee6a7;
    transition: all 0.2s ease; 
}
.carousel-indicators .active {
    background-color: #7A3EE6;
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.back-to-login {
    display: inline-block;
    color: #030303e4;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    transition: all 0.3s ease;
}
.back-to-login i {
    margin-right: 6px;
}