body {
    background: rgb(2, 2, 2);
    font-family: 'ubuntu', sans-serif;
    color: #222;
}

.box {
    margin-top: 550px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.568);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(253, 253, 253, 0.568);
    border-radius: 10px;
    Margin-bottom: 30px;
}

.box h2 {
    margin: 30px 30px 30px;
    padding: 0;
    color: #fff;
    text-align: center;
}

.b {
    text-align: center;
    color: white;
    font-family: 'ubuntu';
    font-size: 40px;
    margin-bottom: 40px;
    text-shadow: 2px 2px #47c2f0;
}

.box input {
    font-size: 16px;
}

.label {
    font-family: 'ubuntu';
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.option {
    font-family: 'ubuntu';
    font-size: 15px;
    color: white;
    font-weight: none;
}

.box .inputbox {
    position: relative;
}

.box .inputbox input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
    font-size: 16px;
}

.box .inputbox label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 18px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.box .inputbox input:focus~label,
.box .inputbox input:valid~label {
    top: -22px;
    left: 0;
    color: rgb(1, 94, 1);
    font-size: 16px;
}



.box .inputbox input:focus {
    transition: .5s;
    border-bottom: 2px solid rgb(1, 94, 1);
}

.box button[type="submit"] {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    background: rgb(1, 94, 1);
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
}





@media screen and (max-width: 970px) {
    .box {
        position: absolute;
        margin-top: 80rem;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 40px;
        background: rgba(0, 0, 0, .8);
        box-sizing: border-box;
        box-shadow: 0 15px 25px rgba(253, 253, 253, 0.568);
        border-radius: 10px;
    }

    .box .inputbox input:focus~label,
    .box .inputbox input:valid~label {
        top: -22px;
        left: 0;
        color: rgb(1, 94, 1);
        font-size: 11px;
    }

    .box .inputbox input {
        width: 100%;
        padding: 10px 0;
        font-size: 11px;
        color: #fff;
        margin-bottom: 30px;
        border: none;
        border-bottom: 1px solid #fff;
        outline: none;
        background: transparent;
    }

    .box .inputbox label {
        position: absolute;
        top: 0;
        left: 0;
        padding: 10px 0;
        font-size: 11px;
        color: #fff;
        pointer-events: none;
        transition: .5s;
    }

    .box h2 {
        margin: 0 0 30px;
        padding: 0;
        color: #fff;
        text-align: center;
        font-size: 11px !important;
    }
}