body {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../assets/images/hero-7.jpg') center/cover;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-y: hidden;

}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.error-box {
    background: #fee2e2;
    color: #b91c1c;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    border: 1px solid #fecaca;
}

.singup-logo img {
    width: 320px;
    margin: 20px;
}

.signup-left {
    /* border:solid; */
    position: fixed;
    left: 0;
    width: 60%;
    padding: 40px 10%;
    height: fit-content;
    top: 50%;
    transform: translateY(-50%);
}

.left-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.left-body {
    font-size: 1.1rem;
    color: #ddd;

}

.left-footer {
    margin-top: 30px;
    /* background-color: rgb(255, 255, 255, 0.9); */
    padding: 10px;
    border-radius: 10px;
    width: fit-content;
}

.left-footer-title {
    color: #fff;
}

.left-footer-action {
    display: flex;
    gap: 25px;
    margin-top: 10px;
    font-size: 25px;
    color: dimgray;
}

.left-footer-action a .fa-facebook {
    color: #3b5998;
}

.left-footer-action a .fa-instagram {
    color: #e4405f;
}

.left-footer-action a .fa-youtube {
    color: #ff0000;
}

.left-footer-action a .fa-whatsapp {
    color: #25D366;
}

.form-card {
    background: rgb(255, 255, 255);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    /* max-width: 500px; */
    width: 40%;
    position: fixed;
    top: 20px;
    bottom: 20px;
    right: 20px;
    /* Final destination */
    padding: 20px;

    /* Animation Properties */
    animation: settleIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    transition: 0.4s ease;
}

@media (min-width: 992px) {

    /* Define the Animation */
    @keyframes settleIn {
        0% {
            transform: translateX(-50%);
            /* Starts completely off-screen to the right */
            opacity: 0;
        }

        100% {
            transform: translateX(0);
            /* Settles at the right: 20px position */
            opacity: 1;
        }
    }
}




.form-container {
    margin-bottom: 15px;
    /* Adds consistent breathing room between inputs */
    width: 100%;
}

.form-container label {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.form-container input,
.form-container select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: white;
    /* Ensures padding doesn't break the width */
}

.form-container button {
    width: 100%;
    padding: 12px;
    background: #ffa500;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-container button:hover {
    background: #e69500;
}

p a{
    color:  #e69500;
}


@media (max-width: 992px) {
    body {
        overflow-y: scroll;
    }

    .signup-left {
        display: none;
    }

    .singup-logo img {
        width: 50%;
        margin: 10px;
    }

    .form-card {
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        top: 150px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    /* Define the Animation */
    @keyframes settleIn {
        0% {
            transform: translateY(50%);
            /* Starts completely off-screen to the right */
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            /* Settles at the right: 20px position */
            opacity: 1;
        }
    }
}