@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f7f7f7e0;
    height: 180px;
}

/*box size*/
.box {
    position: relative;
    width: 460px;
    height: 420px;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 550px;
    box-shadow: 6px 6px 10px 0px grey;
}

.box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    /*background: linear-gradient(90deg, rgba(189,189,181,1) 0%, rgba(4,79,146,1) 100%);*/
    background: linear-gradient(
        90deg,
        rgba(162, 162, 153, 1) 1%,
        rgba(4, 79, 146, 1) 100%
    );
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}

.box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100px;
    height: 420px;
    background: linear-gradient(0deg, transparent, #971daf, #971daf);
    transform-origin: bottom right;
    animation: animat 6s linear infinite;
    animation-delay: -3s;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form {
    position: absolute;
    inset: 4px;
    border-radius: 8px;
    background: #ddd;
    z-index: 10;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

.form h2 {
    color: green;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
}

.inputBox {
    position: relative;
    /* width: 300px; */
    /* margin-top: 35px; */
}
.inputBox input {
    position: relative;
    width: 100%;
    padding: 20px 10px 10px;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1em;
    letter-spacing: 0.05em;
    z-index: 10;
}

.inputBox span {
    position: absolute;
    left: 0;
    padding: 20px 0px 10px;
    font-size: 1em;
    color: #23242a;
    pointer-events: none;
    letter-spacing: 0.05em;
    transition: 0.5s;
    font-weight: bold;
}

.inputBox input:valid ~ span,
.inputBox input:focus ~ span {
    /*email hover*/
    color: /*blue*/ #044e91;
    transform: translateX(0px) translateY(-34px);
    font-size: 0.75em;
}
.inputBox i {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #035393;
    border-radius: 4px;
    transition: 0.5s;
    pointer-events: none;
    z-index: 9;
}

.inputBox input:valid ~ i,
.inputBox input:focus ~ i {
    height: 44px;
}

.links {
    display: flex;
    justify-content: space-between;
}

.links a {
    margin: 10px 0;
    font-size: 0.75em;
    color: #8f8f8f;
    text-decoration: none;
}

.links a:hover,
.links a:nth-child(2) {
    color: #45f3ff;
}

input[type="submit"] {
    border: none;
    outline: none;
    /*background: radial-gradient(circle, rgba(183,199,21,1) 0%, rgba(45,108,64,1) 100%);*/
    background: rgb(1, 97, 153);
    padding: 11px 25px;
    width: 190px;
    margin-top: 69px;
    border-radius: 31px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 53px;
    color: white;
    font-size: 16px;
}

input[type="submit"]:active {
    opacity: 0.8s;
}

.cardheader img {
    display: flex;
    text-align: center;
    margin-top: 20%;
}

/*select company*/
label {
    color: #8f8f8f;
}

select.form-control.js-example-basic-single {
    background: #509dd9;
}

input[type="select_company"] {
    display: flex;
    margin: auto;
    margin-top: -16px;
}
/*select options*/

.form-control option {
    background: #008000b0;
}

h3 {
    color: #035393;
    font-weight: bold;
    text-align: center;
    margin-top: 22px;
}

/*.bg-image {
    background-image: url(img/college.jpg);
    filter: blur(6px);
    -webkit-filter: blur(5px);
    height: 100%;
    background-position: center;
    background-repeat: inherit;
    background-size: cover;
}*/
body {
    background-image: url(img/white.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
