/* Login container */
.login-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.login-header {
    padding: 20px;
    position: absolute;
    z-index: 10;
    width: 97%;
    border-bottom: 2px solid #F8F8F8;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    height: 25px;
}

.logo-shape {
    position: absolute;
    border-radius: 4px;
}

.shape-1 {
    width: 20px;
    height: 24px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    transform: rotate(-8deg);
    z-index: 2;
}

.shape-2 {
    width: 20px;
    height: 24px;
    background: linear-gradient(135deg, #EA4335, #FBBC05);
    transform: rotate(8deg);
    z-index: 1;
    left: 8px;
    top: 2px;
}

.logo-text {
    font-size: 32px;
    color: #004AAD;
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}


.login-header-container {
    padding-right: 20px;
    padding-left: 20px;
}


/* Main content */
.login-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 20px;
    position: relative;
}


.login-form-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}


.login-title-verif {
    font-size: 32px;
    color: #000000;
    margin-bottom: 8px;
    text-align: left;
}

.login-title {
    font-size: 32px;
    color: #000000;
    margin-bottom: 8px;
    text-align: left;
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

.welcome-message {
    font-size: 16px;
    color: #000000;
    margin-bottom: 32px;
    text-align: left;
}

/* Form styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Google login button */
.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
}

.google-login-btn:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-icon {
    flex-shrink: 0;
}

/* Separator */
.separator {
    display: flex;
    align-items: center;
    margin: 8px 0;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.separator span {
    padding: 0 16px;
    font-size: 14px;
    color: #666666;
    background-color: #ffffff;
}

/* Form groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-group input::placeholder {
    color: #999999;
}

/* Password input container */
.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666666;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #000000;
}

.eye-icon {
    width: 20px;
    height: 20px;
}

/* Form options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #000000;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.forgot-password {
    font-size: 14px;
    color: #4285F4;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Login button */
.login-btn {
    width: 100%;
    padding: 14px 16px;
    background: #004aad;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(62, 56, 245, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

/* Signup link */
.signup-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #000000;
}

.signup-btn {
    color: #4285F4;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 4px;
}

.signup-btn:hover {
    text-decoration: underline;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.signup-btn:hover .arrow-icon {
    transform: translateX(2px);
}

/* Responsive design */
@media (max-width: 480px) {
    .login-header {
        padding: 16px;
    }

    .login-content {
        padding: 60px 16px 16px;
    }

    .login-form-container {
        max-width: 100%;
    }

    .login-title {
        font-size: 28px;
    }

    .welcome-message {
        font-size: 15px;
    }

    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Focus states for accessibility */
.google-login-btn:focus,
.login-btn:focus,
.password-toggle:focus {
    outline: 2px solid #4285F4;
    outline-offset: 2px;
}

/* Loading state */
.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}