*{

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

}
html{

    background: #000000;

}
body{

    background: linear-gradient(to bottom, #00000065, #00000065),url(../Imagenes/Backgrouds/Background_Vertical.JPG); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.wrapper{

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgba(39, 39, 39, 0);

}
.form-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 450px;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    border: 2px solid #fff;
}
.login-container{
    position: absolute;
    width: 75%;
    display: flex;
    flex-direction: column;
    transition: .5s ease-in-out;
}
.top header img{
    height: 150px;
    margin: -50px 0 0 0;
}
.top span{
    color: #fff;
    font-size: small;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}
.top span a{
    font-weight: 500;
    color: #ffffff;
    margin-left: 5px;
}
.top span a:hover{
    color: #ffffff;
}
header{
    color: #fff;
    font-size: 30px;
    text-align: center;
    padding: 10px 0 30px 0;
}
.two-forms{
    display: flex;
    gap: 10px;
}
.input-field{
    font-size: 19px;
    background: rgb(255, 255, 255);
    color: #000000;
    height: 45px;
    width: 100%;
    padding: 0 10px 0 45px;
    border: none;
    border-radius: 15px;
    outline: none;
    transition: .2s ease;
}
.input-field:hover, .input-field:focus{
    background: rgb(255, 255, 255);
}
::-webkit-input-placeholder{
    color: #000000;
}
form .input-box i{
    position: relative;
    top: -35px;
    left: 17px;
    color: #000000;
}
.submit{
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    height: 45px;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 10px;
    outline: none;
    background: #000000;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.submit:hover{
    background: #ffffff;
    color: #000000;
    box-shadow: 1px 5px 7px 1px rgba(0, 0, 0, 0.7);
    border: 1px solid #000;
}
@media only screen and (max-width:1200px){
    body{

    background: linear-gradient(to bottom, #00000065, #00000065),url(../Imagenes/Backgrouds/Background_Vertical.JPG); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    }
    .form-box{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        height: 500px;
        background-color: #000;
        border-radius: 20px;
        overflow: hidden;
        z-index: 2;
}
    .wrapper{
        min-height: 100vh;
    }
    form .form-box{
        width: 90%;
        height: 500px;
    }
    .register-container, .login-container{
        width: 100%;
        padding: 0 20px;
    }
    .register-container .two-forms{
        flex-direction: column;
        gap: 0;
    }
}