﻿.login-container {
    width: 100%;
    height: 100%;
    background-color: #438BFB;
    display: flex;
    color: white;
    font-family: TT Travels, Plus Jakarta Sans, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}

.left-section {
    width: 50%;
    background-color: #ffffff;
    margin: 10px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left-section-container {
    width: 100%;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7vh;
}

.left-section-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-section-container {
    width: 80%;
    max-width: 500px;
    padding: 0 20px;
}

.right-section-container a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.right-section-container a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.right-section-container p {
    margin: 0.5rem 0;
    text-align: center;
}

.left-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.login-title {
    font-weight: 600;
    font-size: 40px
}
.login-subtitle {
    font-weight: 500;
    font-size: 16px;
}
.left-title {
    color: #438BFB;
    font-size: 48px;
    font-family: Plus Jakarta Sans;
    font-weight: 800;
}
.left-subtitle {
    color: #438BFB;
    font-size: 24px;
}

.login-form {
    margin-top: 40px;
}

.custom-input-group {
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.input-label {
    display: block;
    color: white;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 8px;
    text-align: center;
}

.input-container {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 2;
}

.custom-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: none;
    border-radius: 12px;
    background-color: #f8f9fa;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.custom-input:focus {
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(67, 139, 251, 0.1);
}

.custom-input::placeholder {
    color: #999;
    font-size: 14px;
}

.custom-input:focus + .input-icon {
    color: #438BFB;
}

.btn-primary {
    background-color: #0000FF;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3371d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 139, 251, 0.3);
}

.checkbox {
    margin: 1.5rem 0;
}

.checkbox label {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #ffffff;
    background-color: transparent;
}

.form-check-input:checked {
    background-color: #438BFB;
    border-color: #438BFB;
}

.forgot-password {
    display: flex;
    justify-content: flex-end;
    margin: 6px 0 16px 0;
}

.forgot-password a {
    color: #e3e7ff;
    font-size: 14px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 18px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.6);
    margin: 24px 0;
}

.divider span {
    color: #ffffff;
    opacity: 0.9;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    padding: 14px 16px;
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
}

.social-button.google {
    position: relative;
    background: #ffffff;
    padding: 14px 16px;
}

.social-button.google .social-visible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
}

.social-button.google .google-invisible {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.social-button.google .google-invisible > div {
    width: 100% !important;
}

.social-button.facebook {
    background: #ffffff;
}
.social-button.facebook img {
    width: 24px;
    height: 24px;
}

.social-button .social-icon {
    width: 24px;
    height: 24px;
}

.signup-text {
    padding-top: 16px;
    color: #e3e7ff;
    text-align: center;
}

.signup-link {
    color: #438BFB;
    font-weight: 600;
}