/*
Description: A custom style for admin login.
*/
body {
    background-image: url('https://storage.googleapis.com/assimilate/banner/medical-bg.webp');
    background-repeat: no-repeat;
     background-size: cover;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.login-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 360px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

.login-form label {
    display: block;
    margin-top: 2px;
    color: #555;
    font-size: 14px;
    cursor: pointer;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.login-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #000;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-form input[type="submit"]:hover {
    background-color: #de3f8a;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.remember-me input {
    margin-right: 5px;
}

.error-message {
    color: #e74c3c;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fadbd8;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.success-message {
    color: #27ae60;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #d5f5e3;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.login-links {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
}

.login-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.login-links a:hover {
    color: #de3f8a;
}

.powered-by {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: #fff;
}

@media (max-width: 768px) {
    .doctor-left, .doctor-right {
        display: none;
    }

    .login-form-container {
        width: 90%;
        max-width: 360px;
    }
}
