@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background */
body {
    min-height: 100vh;
    background: linear-gradient(-45deg, #1d2671, #c33764, #283c86, #45a247);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;

    /* layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Main div */
.header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 50px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    animation: fadeIn 1.5s ease;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text */
.header h1 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 10px;
}

.header h2 {
    font-size: 18px;
    font-weight: 300;
    color: #f1f1f1;
    margin-bottom: 6px;
}

/* Buttons (below div) */
.btn {
    margin-top: 25px;
    display: inline-block;
    padding: 14px 42px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.4s ease;
}

/* Sign In */
.btn-ghost {
    color: #ffffff;
    border: 2px solid #ffffff;
    background: transparent;
    margin-right: 10px;
}

.btn-ghost:hover {
    background: #ffffff;
    color: #c33764;
    transform: scale(1.08);
}

/* Login */
.btn-primary {
    background: #ffffff;
    color: #1d2671;
}

.btn-primary:hover {
    background: #1d2671;
    color: #ffffff;
    transform: scale(1.08);
}

/* Mobile responsive */
@media (max-width: 600px) {
    .header {
        padding: 40px 25px;
    }

    .header h1 {
        font-size: 30px;
    }

    .btn {
        display: block;
        margin: 15px auto 0;
        width: 200px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #1d2671, #c33764, #283c86, #45a247);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sign up form */
#signin {
    width: 380px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    animation: fadeIn 1.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Labels */
#signin label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #ffffff;
}

/* Inputs */
#signin input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
}

#signin input:focus {
    box-shadow: 0 0 0 2px #ffffff;
}

/* Submit button */
#signin button {
    width: 100%;
    padding: 13px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    color: #1d2671;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

#signin button:hover {
    background: #1d2671;
    color: #ffffff;
    transform: scale(1.05);
}

/* Mobile responsive */
@media (max-width: 480px) {
    #signin {
        width: 90%;
        padding: 30px;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #141e30, #243b55, #1d2671, #c33764);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Login form */
#login {
    width: 350px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Labels */
#login label {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 14px;
}

/* Inputs */
#login input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
}

#login input:focus {
    box-shadow: 0 0 0 2px #c33764;
}

/* Register text */
#login h3 {
    font-size: 13px;
    font-weight: 300;
    color: #f1f1f1;
    margin-bottom: 18px;
}

#login h3 a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

#login h3 a:hover {
    text-decoration: underline;
}

/* Button */
#login button {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    color: #1d2671;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

#login button:hover {
    background: #1d2671;
    color: #ffffff;
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 480px) {
    #login {
        width: 90%;
        padding: 30px;
    }
}

