@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {

    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: -50px;
    gap: 30px
}

.container .drop {

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 450px;
    height: 550px;
    padding: 35px;
    box-shadow: inset 5px 10px 10px rgba(0, 0, 0, .05),
        25px 35px 20px rgba(0, 0, 0, .05),
        25px 30px 30px rgba(0, 0, 0, .05),
        inset -20px -20px 20px rgba(255, 255, 255, 0.5);
    transition: 0.5s;
    border-radius: 15px;
     border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .drop .inputbx- {

    position: relative;
    width: 275px;
    border-radius: 1px;
    box-shadow: inset 2px 5px 15px rgba(0, 0, 0, .1),
        inset -2px -5px 10px rgba(255, 255, 255, 1),
        10px 10px 20px rgba(0, 0, 0, .04),
        10px 10px 20px rgba(0, 0, 0, 0.025);

}

.container .drop .inputbx .input {

    border: none;
    border-bottom: .5px solid #ff0a47;
    outline: none;
    background: transparent;
    font-size: 1.1rem;
    padding: 8px 10px;
    width: 300px;

}

.container .drop .btn {

    border: none;
    outline: none;
    background: #ff0a47;
    width: 125px;
    padding: 10px;
    box-shadow: inset 2px 5px 10px rgba(0, 0, 0, .1),
        15px 15px 10px rgba(0, 0, 0, .05),
        15px 10px 15px rgba(0, 0, 0, 0.025);
    transition: 0.5s;
    color: white;
    margin-top: 20px;
    font-weight: 500;
    -letter-spacing: 0.1em;
    font-size: 1.1em;
    border-radius: 8px;

}