
.container {
    padding-top: 70px;
    display: flex;
    min-height: 100vh;
}

.images-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.doctor-circle {
    width: 220px;
    height: 320px;
    border-radius: 30px;
    overflow: hidden;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.doctor-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-doctor-circles {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.small-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.small-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-section {
    flex: 1;
    background-color: #3366ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-box {
    background-color: #ffffff;
    padding: 50px 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.login-box h2 {
    margin-bottom: 10px;
    color: #333;
}

.login-box p {
    color: #777;
    margin-bottom: 20px;
}

.login-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.login-box input[type="email"],
.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-box .remember-forgot {
    max-width: none;
    margin-left: 0;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
}
.login-box .remember-forgot div {
    margin-bottom: 15px;
}
.login-box .remember-forgot a {
    text-decoration: none;
    color: #3366ff;
}

.login-box button {
    width: 100%;
    padding: 12px;
    background-color: #3366ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
}

.login-box .signup {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.login-box .signup a {
    color: #3366ff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
    flex-direction: column;
    }
    .left-section, .right-section {
    flex: unset;
    width: 100%;
    }
    .left-section {
    padding: 30px 20px;
    }
    .right-section {
    padding: 30px 20px;
    }
    .doctor-circle {
    width: 180px;
    height: 260px;
    }
}

footer {
    margin-top: 0 !important;
}