/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #0f0f0f, #6a1b9a, #ffffff);
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Form Box */
.form-box {
    width: 380px;
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

/* Button Switch Box */
.button-box {
    width: 100%;
    margin: 30px 0;
    position: relative;
    text-align: center;
}

.toggle-btn {
    padding: 10px 26px;
    cursor: pointer;
    background: transparent;
    border: none;
    font-weight: 600;
    z-index: 1;
    color: #333;
    transition: color 0.3s ease;
}

.toggle-btn:hover {
    color: #6a0572;
}

#btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, #6a0572, #3d0351);
    border-radius: 30px;
    transition: all 0.4s ease;
    z-index: 0;
}

/* Social Logos */
.website-logo {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.website-logo img {
    width: 30px;
    border-radius: 50%;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.website-logo img:hover {
    transform: scale(1.1);
}

/* Input Group */
.input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Input Field */
.input-field {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s ease;
    outline: none;
    color: #333;
}

.input-field:focus {
    border-color: #6a0572;
    box-shadow: 0 0 0 4px rgba(106, 5, 114, 0.1);
}

.input-field:hover {
    border-color: #3d0351;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px 20px;
    margin-top: 15px;
    background: linear-gradient(to right, #6a0572, #3d0351);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(to right, #5a045f, #2d023f);
}

/* Checkbox */
.check-box {
    margin: 20px 0 10px 0;
    align-self: flex-start;
}

/* Responsive */
@media (max-width: 768px) {
    .form-box {
        width: 90%;
        padding: 25px;
    }

    .input-field {
        font-size: 15px;
    }

    .submit-btn {
        padding: 12px 18px;
    }

    .toggle-btn {
        padding: 8px 18px;
        font-size: 14px;
    }

    .website-logo img {
        width: 26px;
    }
}

@media (max-width: 480px) {
    .form-box {
        width: 100%;
        padding: 20px;
    }

    .submit-btn {
        font-size: 15px;
    }

    .toggle-btn {
        padding: 8px 12px;
    }
}
