@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;900&display=swap');

    .roorkee-form-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    }

    .roorkee-form-overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .roorkee-form-custom-container {
        position: relative;
        width: 350px;
        /* height: 500px; */
        border-radius: 20px;
        padding: 40px;
        box-sizing: border-box;
        background: #000000;
        box-shadow: 14px 14px 20px #363636, -14px -14px 20px #363636;
        /* font-family: 'Poppins', sans-serif; */
        transform: scale(0.8);
        transition: transform 0.8s ease-out;
    }

    .roorkee-form-custom-container.animate-on-reload.is-visible {
        transform: scale(1);
    }

    .roorkee-form-custom-container .roorkee-form-close-button {
        position: absolute;
        top: 3%;
        right: 0;
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        /* font-family: 'Poppins', sans-serif; */
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background 0.3s ease;
    }

    .roorkee-form-custom-container .roorkee-form-close-button:hover {
        color: hsla(167, 100%, 21%, 0.3);
    }

    .roorkee-form-custom-container .roorkee-form-brand-logo {
        height: 100px;
        width: 100px;
        background: url("/images/roorkee\ one\ logo\ svg.svg") center center no-repeat;
        margin: auto;
        padding: 2rem;
        /* border-radius: 50%; */
        box-sizing: border-box;
        box-shadow: 7px 7px 10px #030404, -7px -7px 10px #040404;
    }

    .roorkee-form-custom-container .roorkee-form-inputs {
        text-align: left;
        margin-top: 30px;
    }

    .roorkee-form-custom-container .roorkee-form-label {
        display: block;
        width: 100%;
        padding: 0;
        border: none;
        outline: none;
        box-sizing: border-box;
        margin-bottom: 4px;
        color: white;
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
    }

    .roorkee-form-custom-container .roorkee-form-input {
        caret-color: hsla(167, 100%, 21%, 1);
        display: block;
        width: 100%;
        padding: 0;
        border: none;
        outline: none;
        box-sizing: border-box;
        background: #ecf0f3;
        padding: 10px;
        padding-left: 20px;
        height: 50px;
        font-size: 14px;
        border-radius: 50px;
        box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;
        font-family: 'Poppins', sans-serif;
    }

    .roorkee-form-custom-container .roorkee-form-input::placeholder {
        color: gray;
    }

    .roorkee-form-custom-container .roorkee-form-button {
        display: block;
        width: 100%;
        padding: 0;
        border: none;
        outline: none;
        box-sizing: border-box;
        color: white;
        margin-top: 20px;
        background: hsla(167, 100%, 21%, 1);
        /* height: 40px; */
        border-radius: 20px;
        cursor: pointer;
        font-weight: 900;
        /* font-family: 'Poppins', sans-serif; */
        box-shadow: 7px 7px 10px #030404, -7px -7px 10px #040404;
        transition: 0.5s;
    }

    .roorkee-form-custom-container .roorkee-form-button:hover {
        box-shadow: none;
    }

    .roorkee-form-custom-container .roorkee-form-link {
        position: absolute;
        font-size: 8px;
        bottom: 4px;
        right: 4px;
        text-decoration: none;
        color: black;
        background: yellow;
        border-radius: 10px;
        padding: 2px;
        font-family: 'Poppins', sans-serif;
    }

    .roorkee-form-custom-container .roorkee-form-heading {
        position: absolute;
        top: 0;
        left: 0;
        font-family: 'Poppins', sans-serif;
    }

    .roorkee-form-message{
        color: red;
    }