* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    width: 90%;
    max-width: 800px;
    overflow: hidden;
}

.logo-area {
    background-color: rgb(146, 45, 50);
    padding: 40px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.logo-area img {
    max-width: 100%;
    height: auto;
}

.form-area {
    flex: 1;
    padding: 40px;
}

.form-title {
    text-align: center;
    margin-bottom: 25px;
    color: rgb(146, 45, 50);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: rgb(146, 45, 50);
    outline: none;
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    color: rgb(146, 45, 50);
}

.login-btn {
    background-color: rgb(146, 45, 50);
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: rgb(126, 35, 40);
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: rgb(180, 60, 65);
}
.logo-image {
    background-image: url('../../tahkleeq/assets/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height:  180px;
    
  
}
.form-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50; 
    text-align: center;
    margin-top: -5px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive layout for small screens */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .logo-area, .form-area {
        width: 100%;
        padding: 30px;
    }

    .logo-area {
        text-align: center;
    }
}