/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Login Wrapper */
.login-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
}

/* Login Container */
.login-container {
    display: flex;
    width: 100%;
    max-width: 600px;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

/* Left Section: Login Form */
.login-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
    justify-content: center;
}

.logo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
}

.logo {
    display: flex;
    gap: 2px;
}

.logo-blue {
    color: #2563EB;
    font-size: 24px;
    font-weight: bold;
}

.logo-green {
    color: #4CAF50;
    font-size: 24px;
    font-weight: bold;
}

.logo-text {
    color: #1F2937;
    font-size: 24px;
    font-weight: 600;
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
margin-bottom: 24px;
    text-align: center;
}

.authentication_logo{
    position: absolute;
    left: 60px;
    top: 30px;
}
/* Messages */
.messages {
    margin-bottom: 20px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.alert-error {
    background-color: #FEE2E2;
    color: #DC2626;
    border: 1px solid #FCA5A5;
}

.alert-success {
    background-color: #D1FAE5;
    color: #059669;
    border: 1px solid #6EE7B7;
}

/* Form Styles */
.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    background-color: #F3F4F6;
    color: #1F2937;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2563EB;
    background-color: #ffffff;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper .form-input {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6B7280;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #2563EB;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.error-message {
    color: #DC2626;
    font-size: 12px;
    margin-top: 4px;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #2563EB;
}

.checkbox-text {
    user-select: none;
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #2563EB;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.submit-btn:hover {
    background-color: #1D4ED8;
}

.submit-btn:active {
    background-color: #1E40AF;
}

.forgot-password {
    display: block;
    text-align: center;
    color: #2563EB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: #1D4ED8;
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 768px) {
    .login-left {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 28px;
    }

    .login-container {
        max-width: 100%;
    }
}

