* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
}

/* Left Section - Login Form */
.left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    animation: slideInLeft 0.8s ease-out;
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 80px;
    height: 80px;
    /* background: hsl(173.91deg 60% 45.1%); */
    /* border-radius: 15px; */
    /* display: flex; */
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    /* box-shadow: 0 8px 20px rgba(52, 168, 147, 0.3); */
}

.logo-letter {
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.clinic-name {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.welcome-section {
    text-align: center;
    margin-bottom: 30px;
}

.welcome-section h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.welcome-section p {
    color: #6c757d;
    font-size: 14px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: hsl(173.91deg 60% 45.1%);
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 168, 147, 0.1);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 14px;
}

.toggle-password {
    cursor: pointer;
    right: 45px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: hsl(173.91deg 60% 45.1%);
}

.login-btn {
    width: 100%;
    background: hsl(173.91deg 60% 45.1%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.login-btn:hover {
    background: hsl(173.91deg 70% 40%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 168, 147, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.forgot-password {
    text-align: center;
}

.forgot-password a {
    color: hsl(173.91deg 60% 45.1%);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: hsl(173.91deg 70% 40%);
}

/* Right Section - Banner */
.right-section {
    flex: 1;
    background: linear-gradient(135deg, hsl(173.91deg 60% 45.1%) 0%, hsl(173.91deg 70% 40%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-section {
    text-align: center;
    color: white;
    z-index: 2;
    animation: slideInRight 0.8s ease-out;
}

.brand-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

.brand-section h1 {
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

/* Dashboard Styles */
.dashboard-container {
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.dashboard-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h1 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-header h1 i {
    color: hsl(173.91deg 60% 45.1%);
}

.logout-btn {
    background: hsl(173.91deg 60% 45.1%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logout-btn:hover {
    background: hsl(173.91deg 70% 40%);
    transform: translateY(-2px);
}

.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.welcome-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.welcome-card h2 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.welcome-card p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 40px;
}

.admin-features,
.doctor-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, hsl(173.91deg 60% 45.1%) 0%, hsl(173.91deg 70% 40%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .right-section {
        display: none;
    }
    
    .left-section {
        flex: 1;
    }
    
    .login-card {
        padding: 30px 20px;
    }
    
    .brand-section h1 {
        font-size: 28px;
    }
    
    .admin-features,
    .doctor-features {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}