@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap')

::root{
         --blue:#2c52ed;
     }
*{
     margin:0;
     padding:0;
     box-sizing:border-box;
     font-family:"Poppins", sans-serif;
 }

body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: url("../assets/img/young2.jpg");*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

::selection {
    color: #fff;
    background: #232363;
}

 .wrapper{
     width:400px;
     padding:50px 40px;
     border-radius:5px;

     margin-top:6%;

     background:rgba(0,0,0,0.592); /*rgb(64 75 102 / 48%)*/
     backdrop-filter:blur(3px);
     text-align:center;
     box-shadow:10px 10px 15px rgba(0,0,0,0.193);
     color:white;
 }

 .wrapper header{
     font-size:35px;
     font-weight:600;
 }

 .wrapper form{
     margin:40px 0;
 }

 form .field{
     width:100%;
     margin-bottom:20px;
 }

 form .field .input-area{
     height:50px;
     width:100%;
     position:relative;
 }

 form input{
     width:100%;
     height:100%;
     outline:none;
     padding:0 45px;
     font-size:18px;
     background:transparent;
     caret-color:#53a1f0;
     color:white;

     border-radius:5px;
     border:1px solid #fff;
 }

form .field input:focus {
    border-color: #232363;
}

 .field .input-area i{
     position:absolute;
     top:50%;
     font-size:17px;
     pointer-events:none;
     transform:translateY(-50%);
 }

 .input-area .icon{
     left:15px;
     color:#bfbfbf;
     transition:color .2s ease;
 }

form input:focus ~ .icon {
    color: #232363;
}

 form input::placeholder{
     color:#bfbfbf;
     font-size:17px;
 }

 form .text{
     text-align:left;
     margin-top:-10px;
 }

form .text-right {
    text-align: right;
    margin-top: 10%;
}

.wrapper a {
    /*color:var(--blue);*/
    color: #fff;
    text-decoration:none;
}

 .wrapper a:hover{
     text-decoration:underline;
 }

form input[type="submit"] {
    height: 50px;
    margin-top: 30px;
    color: white;
    padding: 0;
    border: none;
    background: #232363;
    /*background:var(--blue);*/

    cursor:pointer;
    border-bottom: 2px solid rgba(0,0,0,0.112);
    transition: all .3s ease;
}

 form input[type="submit"]:hover{
     transform: scaleX(1.05);
 }




.wrapper1 {
    width: 800px;
    padding: 50px 40px;
    border-radius: 5px;
    margin-top: 6%;
    background: rgba(0,0,0,0.592); /*rgb(64 75 102 / 48%)*/
    backdrop-filter: blur(3px);
    text-align: center;
    box-shadow: 10px 10px 15px rgba(0,0,0,0.193);
    color: white;
}

    .wrapper1 header {
        font-size: 35px;
        font-weight: 600;
    }

    .wrapper1 form {
        margin: 40px 0;
    }

.wrapper1 a {
    /*color:var(--blue);*/
    color: #fff;
    text-decoration: none;
}

    .wrapper1 a:hover {
        text-decoration: underline;
    }

.column {
    float: left;
    width: 50%;
    padding:10px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/*.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #495057;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #d2d6da;
    appearance: none;
    border-radius: 0.375rem;
    transition: 0.2s ease;
}*/

/*-------------------------------*/

/* The container must be positioned relative: */
.let-select {
    position: relative;
    font-family: Arial;
}

    /*.let-select select {
        display: none;*/ /*hide original SELECT element: */
    /*}*/

.select-selected {
    background-color: DodgerBlue;
}

    /* Style the arrow inside the select element: */
    .select-selected:after {
        position: absolute;
        content: "";
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #fff transparent transparent transparent;
    }

    /* Point the arrow upwards when the select box is open (active): */
    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #fff transparent;
        top: 7px;
    }

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

/*-------------------------------*/