* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    height: 100vh;
    background: #e9e6ec;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Container */
.container {
    width: 90%;
    max-width: 1100px;
    min-height: 600px;
    background: #dcd6e3;
    border-radius: 30px;
    display: flex;
    padding: 20px;
    gap: 20px;
}

/* LEFT CARD */
.card {
    flex: 1;
    max-width: 420px;
    width: 100%;
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo {
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* Heading */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Google Button */
.google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4f7df3;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

.google img {
    width: 18px;
}

/* Input */
.input {
    margin-bottom: 15px;
}

.input label {
    font-size: 13px;
    color: #555;
}

.input input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-top: 5px;
    outline: none;
}

.input input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}

/* Button */
.btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
}

.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right img {
    width: 100%;
    max-width: 380px;
}



.logo img {
    width: 160px;
}

/* OPTIONS ROW */
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Remember me */
.remember {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
}

/* Checkbox styling */
.remember input {
    cursor: pointer;
}

/* Forgot password */
.forgot {
    font-size: 13px;
    text-decoration: none;
    color: #4f7df3;
    font-weight: 500;
}

.forgot:hover {
    text-decoration: underline;
}

@media (max-width:1024px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .right img {
        max-width: 300px;
    }

    h1 {
        font-size: 28px;
    }
}

@media (max-width:480px) {
    h1 {
        font-size: 24px;
    }

    .card {
        padding: 20px;
    }

    .input input {
        padding: 10px;
    }

    .btn {
        padding: 10px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .right {
        display: none;
    }
}


.btn {
    position: relative;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    color: #fff;
    font-weight: 500;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    transition: 0.3s;
}

/* Shine layer */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shineMove 2s linear infinite;
}

/* 🔥 Auto animation */
@keyframes shineMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


/* Click effect */
.btn:active {
    transform: scale(0.97);
}

/* Text above animation */
.btn span {
    position: relative;
    z-index: 2;
}

/* loader */
.loader {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: none;
    animation: spin 10s linear infinite;
    margin: auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* loading state */
.btn.loading .btn-text {
    display: none;
}

.btn.loading .loader {
    display: inline-block;
}

/* disable click */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}