* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Remove underline from all a tags */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Alert styles */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

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

.alert-success {
    background-color: #DCFCE7;
    border: 1px solid #86EFAC;
    color: #16A34A;
}

body {
    min-height: 100vh;
    display: flex;
    background: #f0f2f5;
    justify-content: center;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 8rem;
    max-width: 2000px;
    margin: 0 auto;
}

.left-side {
    flex: 1;
    background-image: url('/assets/img/glenn-carstens-peters-npxXWgQ33ZQ-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 1rem 0 0 1rem;
    position: relative;
    overflow: hidden;
}

/* Add an overlay to improve text readability */
.left-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Ensure content stays above the overlay */
.left-side > * {
    position: relative;
    z-index: 2;
}

.qr-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.qr-code {
    width: 180px;
    height: 180px;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.qr-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 0 1rem 1rem 0;
}

.login-container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background: transparent;
    border-radius: 1rem;
    box-shadow: none;
}

h1 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.login-btn {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #333;
    height: 65px;
}

.login-btn:hover {
    background: #f1f3f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #4A158A;
}

.btn-icon {
    width: 42px;
    height: 42px;
    margin-right: 1.2rem;
    object-fit: contain;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    width: 24px;
    height: 24px;
    opacity: 0.5;
}

input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 1px solid #e4e6eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

input:focus {
    outline: none;
    border-color: #1877f2;
    box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.2);
}

input:focus + .input-icon {
    opacity: 1;
}

.giris-yap {
    padding: 1rem;
    background: #ff9f43;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 50px;
    width: 100%;
}

.giris-yap:hover {
    background: #f39030;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(243, 144, 48, 0.2);
}

.forgot-password {
    text-align: center;
    color: #1877f2;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: block;
}

.forgot-password:hover {
    text-decoration: underline;
}

@media (max-width: 1600px) {
    .container {
        padding: 6rem;
        max-width: 1800px;
        min-height: 1000px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 3rem;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .left-side {
        display: none;
    }
    
    .right-side {
        flex: 1;
        padding: 1rem;
        border-radius: 0;
    }
    
    .login-container {
        padding: 1.5rem;
    }
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.eba-logo {
    height: 44px;
    width: auto;
} 