@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

.auth-bg-wrapper {
    background: linear-gradient(to bottom, #49D1D9 50%, #E0F7FA 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 40px 20px;
    box-sizing: border-box;
}

.login-split-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
    justify-content: space-between;
}

.brand-side {
    flex: 0;
    margin-top: -50px; 
}

.brand-text {
    font-family: 'Pacifico', cursive;
    font-size: 135px; 
    line-height: 0.70;
    margin: 0;
    user-select: none;
}

.white-text { 
    color: #FFFFFF;
    display: block;
	margin-top: -100x;
}

.blue-text { 
    color: #1a1a9e; 
    margin-left: 290px;
    margin-top: -50px; 
    display: block;
}

.form-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.login-card {
    background: #FFFFFF;
    padding: 35px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.login-card h3 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: sans-serif;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-login {
    width: 100%;
    background: #1a237e;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.switch-link {
    text-align: center;
    font-size: 13px;
    margin: 15px 0 15px 0;
}

.switch-link a {
    color: #151C9F;
    text-decoration: underline;
    font-weight: 600;
}

.welcome-section {
    text-align: center;
    padding-top: 20px;
}

.welcome-title {
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 5px 0;
    font-family: sans-serif;
}

.welcome-sub {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    font-family: sans-serif;
}

.btn-google {
    width: 100%;
    background: #eeeeee;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
}

.btn-google img {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0; 
    object-fit: contain;
}

.password-wrapper {
    position: relative; 
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding: 10px;
    padding-right: 45px; 
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

#togglePassword {
    position: absolute;
    right: 15px;
    top: 50%; 
    transform: translateY(-80%); 
    cursor: pointer;
    color: #666;
    z-index: 10;
}

@media (max-width: 992px) {
    .login-split-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .brand-side {
        margin-bottom: 40px;
        margin-top: 0; 
    }

    .brand-text {
        font-size: 100px;
    }

    .blue-text {
        margin-left: 0;
        margin-top: 10px;
    }

    .form-side {
        justify-content: center;
        width: 100%;
    }

    .login-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 90px;
    }
    
    .auth-bg-wrapper {
        padding: 20px 10px;
    }

    .login-card {
        padding: 25px 20px;
    }
}