﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f0f2f5;
}

.login-container {
    display: flex;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100vh;
}


.image-section {
    width: 100%;
    background-image: url("/Assets/image.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

    .image-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(25, 118, 210, 0.1);
    }

.form-section {
    width: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .form-header h2 {
        color: #1976d2;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .form-header p {
        color: #64748b;
        font-size: 1rem;
    }

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

    .input-group input {
        width: 100%;
        padding: 1rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f8fafc;
    }

        .input-group input:focus {
            border-color: #1976d2;
            background: white;
            outline: none;
            box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
        }

    .input-group label {
        position: absolute;
        left: 1rem;
        top: 1rem;
        color: #64748b;
        font-size: 1rem;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .input-group input:focus ~ label,
    .input-group input:not(:placeholder-shown) ~ label {
        top: -0.5rem;
        left: 0.8rem;
        font-size: 0.8rem;
        background: white;
        padding: 0 0.4rem;
        color: #1976d2;
    }

.forgot-password {
    text-align: right;
    margin-bottom: 1.5rem;
}


    .forgot-password a {
        color: #64748b;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .forgot-password a:hover {
            color: #1976d2;
        }

.login-button {
    width: 100%;
    padding: 1rem;
    background: #1976d2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .login-button:hover {
        background: #1565c0;
    }

.social-login {
    margin-top: 2rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8fafc;
        color: #64748b;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }

        .social-icons a:hover {
            background: #1976d2;
            color: white;
        }

.signup-link {
    text-align: center;
    margin-top: 2rem;
    color: #64748b;
}

    .signup-link a {
        color: #1976d2;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .signup-link a:hover {
            color: #1565c0;
        }

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    padding-left: 1rem;
}

.logout-logo {
    text-align: center;
    padding: 20px 0;
}

    .logout-logo img {
        max-width: 220px;
        height: auto;
    }
.LoginLogo {
    max-width: 215px;
    height: auto;
}

.ResetPass-Back-btn {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #5f6368;
}

    .ResetPass-Back-btn a {
        color: #1a73e8;
        text-decoration: none;
        font-weight: 500;
    }

        .ResetPass-Back-btn a:hover {
            text-decoration: underline;

        }
/*Error summary style */
.validation-summary-errors {
    color: red;
    padding: 0 0px 8px 6px;
    margin-bottom: 10px;
    list-style: none;
}
.error-text-pass {
    margin-top: 8px !important;
    color: red;
    display: block;
    padding: 0px 0 0 3px;
}

.error-text-user {
    margin-top: 8px !important;
    color: red;
    display: block;
    padding: 0px 0 0 3px;
}

@media only screen and (max-width: 600px) {
    .image-section {
      display:none;
    }
    .form-section{
       width:100%;
    }
}


