﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    /* border-radius: 20px; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 420px;
    padding: 40px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

    .main-heading {
        color: #0f7aa4;
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .logo p {
        color: #666;
        font-size: 14px;
    }

.input-group {
    margin-bottom: 25px;
    position: relative;
}

    .input-group label {
        display: block;
        color: #333;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .input-group input {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #e0e0e0;
        /* border-radius: 10px; */
        font-size: 15px;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

        .input-group input:focus {
            outline: none;
            border: 1px solid #0e7ba68c;
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgb(158 222 248 / 55%);
        }

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

    .remember-me input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #0d8ec1;
    }

.forgot-password {
    color: #0f7aa4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .forgot-password:hover {
        color: #764ba2;
    }

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2890ba 0%, #068dc3 100%);
    color: white;
    border: none;
    margin-bottom: 17px;
    /* border-radius: 10px; */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(158 222 248 / 55%);
}

    .login-btn:hover {
        transform: translateY(-2px);
       box-shadow: 0 4px 15px rgb(106 212 255 / 55%);
    }

    .login-btn:active {
        transform: translateY(0);
    }

.signup-link {
    text-align: center;
    color: #666;
    font-size: 14px;
}

    .signup-link a {
        color: #0f7aa4;
        text-decoration: none;
        font-weight: 600;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }
        .logo-img{
            width:80px;
        }
