﻿html, body {
    height: 100%;
    margin: 0;
}

.login-container {
    height: 100vh;
    overflow: hidden;
}

.left-side {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
}

.login-logo {
    max-width: 250px;
    height: auto;
}

.form-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box {
    width: 100%;
    max-width: 320px;
}

.footer {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
}

.right-side {
    padding: 0;
}

.carousel-item img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-primary {
    width: 100%;
}

.forgot-password {
    text-align: center;
    margin-top: 1rem;
}

.forgot-link {
    color: #014361;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.alert-sm {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.7;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #014361;
}
