@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap");

* {
    font-family: "kufam", sans-serif;
}

body{
    padding: 0 !important;
    margin: 0 !important;
}

.login-wrapper {
    display: flex !important;
    margin: 0;
    padding: 30px;
    background-image: url('../../images/background/bg.png');
    backdrop-filter: blur(2px);
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.app-wrapper {
    background-color: white;
    display: flex;
    margin: 0 !important;
    padding: 10px !important;
    height: 528px;
    border-radius: 10px;
    width: 1000px !important;
}

.app-wrapper img {
    border-radius: 8px;
}

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

.right {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1,
h2,
h3 {
    font-size: clamp(24px, 3vw, 40px) !important;
    margin: 1rem 0;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin: 0.5rem 0;
}

.btn-primary {
    background-color: #951d5a !important;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #951d59c0 !important;
}

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff;
    color: #444444;
    border: 1px solid #dddddd;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-login-btn:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
    color: #444444;
    text-decoration: none;
}

.google-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-login-btn .google-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.google-login-btn span {
    letter-spacing: 0.2px;
}

/* Optional: Add loading state */
.google-login-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Optional: Add responsive styles */
@media (max-width: 480px) {
    .google-login-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .google-login-btn .google-icon {
        width: 18px;
        height: 18px;
    }
}