/* ══════════════════════════════════════
   WELCOME SCREEN (AUTH PAGE)
   ══════════════════════════════════════ */

.welcome-screen {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* Left Side - Image */
.welcome-image-side {
    flex: 1.1;
    position: relative;
    background: url('welcome-bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px;
    color: #fff;
}

.welcome-image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.welcome-brand {
    position: relative;
    z-index: 2;
}

.welcome-brand h1 {
    font-family: 'Shippori Mincho', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.welcome-brand p {
    font-size: 1.1rem;
    max-width: 400px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Right Side - Login */
.welcome-login-side {
    flex: 0.9;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.login-container {
    width: 100%;
    max-width: 420px;
    z-index: 2;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h2 {
    font-size: 2.8rem;
    color: #00a8e8;
    margin-bottom: 8px;
}

.login-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.toggle-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.toggle-btn.active {
    color: #333;
    border-bottom-color: #00a8e8;
}

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
}

.input-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #fff;
    padding: 0 5px;
    font-size: 0.85rem;
    color: #00a8e8;
    font-weight: 600;
    z-index: 1;
}

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

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #888;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-wrapper input:focus {
    border-color: #00a8e8;
}

.forgot-link {
    text-align: right;
    font-size: 0.85rem;
    color: #888;
    margin-top: -10px;
}

.forgot-link a:hover {
    color: #00a8e8;
}

.login-btn {
    background: #00a8e8;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.3);
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 45%;
    height: 1px;
    background: #e0e0e0;
}

.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 45%;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    font-size: 0.9rem;
    color: #888;
    background: #fff;
    padding: 0 10px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #f8f9fa;
    cursor: pointer;
    transition: background 0.3s;
}

.social-btn:hover {
    background: #f0f0f0;
}

.social-btn img {
    width: 24px;
    height: 24px;
}

.register-link {
    text-align: center;
    font-size: 0.95rem;
    color: #555;
}

.register-link a {
    color: #333;
    font-weight: 700;
}

.register-link a:hover {
    color: #00a8e8;
}

/* Landmarks Illustration */
.landmarks-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 150px;
    background: url('landmarks.png') no-repeat bottom right;
    background-size: contain;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

/* Phone Form Hidden by Default */
#phone-form {
    display: none;
}

@media (max-width: 992px) {
    .welcome-image-side {
        display: none;
    }
    .welcome-login-side {
        flex: 1;
    }
}
