body{
    height: 100vh;
    background-color: rgb(0, 0, 0);
    align-content: center;
    justify-items: center;
    font-family: monospace;
}
a{
    text-decoration: none;
}
.apply_box{
    height: 600px;
    width: 520px;
    border-radius: 8px;
    border: 2px solid #fff;
    overflow: hidden;
}
.apply_box_first{
    height: 200px;
        margin-bottom:10px;
    align-content: center;
    justify-items: center;
    background-color: #274Dab;
    clip-path: polygon(100% 0, 100% 55%, 75% 100%, 0 60%, 0 0);
}
.text{
    width: 70%;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.apply_box_2nd{
    height: 400px;
    padding-left: 40px;
}
input{
    padding-left: 10px;
    border:none;
    border-radius: 3px;
    height: 40px;
    width: 90%;
    margin:10px 0px;
    outline-color:#274Dab;
}
input::placeholder{
    font-family: monospace;
}
.register{
    height: 40px;
    width: 90%;
    margin:10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.log{
    padding: 10px 30px;
    color: #274Dab;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.reg{
    padding: 10px 20px;
    color: #fff;
    background-color: #274Dab;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.next{
    height: 40px;
    width: 125px;
    border-radius:6px;
    text-align: center;
    align-content: center;
    background-color:#274Dab;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    bottom:10%;
    left: 65%;
    transition: all ease .5s;
}
.next:hover{
    transform: translate(10%);
    box-shadow:0px 0px 8px 1px #fffffff3;

}



