@font-face {
    font-family: Inter;
    src: url(/Content/Font/Inter/static/Inter-Regular.ttf);
}

@font-face {
    font-family: Gilroy;
    src: url(/Content/Font/Gilroy-Extrabold/Gilroy-Extrabold.ttf);
}



.form-box {
    position: relative;
    width: 420px;
    height: 650px;
    background: #E6E6E6;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 32px;
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-blend-mode: hard-light;
    padding: 64px 24px;
    opacity: 0.9;
}

.inputbox {
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid #191919;
}

h5 {
    color: #622B26;
    font-family: Gilroy;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}


input:focus ~ label, input:valid ~ label {
    top: -5px;
}

select:focus ~ label, select:valid ~ label {
    top: -5px;
}


.inputbox input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 35px 0 5px;
    color: #191919;
    /* Subtitulo 1 */
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.024px;
}

.inputbox select {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 35px 0 5px;
    color: #191919;
    /* Subtitulo 1 */
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.024px;
}

select option {
    color: black;
    background: transparent;
}


.inputbox label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
 
    font-size: 1em;
    pointer-events: none;
    transition: .5s;
    /* Subtitulo 1 */
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.024px;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'poppins',sans-serif;
}

.section-bg-overlay {
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #191919;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  background: url('/Content/Assets-Fondo/fondo-cice.jpg')no-repeat;
  background-position: center;
  background-size: cover;
}

button {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #622B26;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: #fff;
}

.forget {
    margin: -15px 0 15px;
    font-size: .9em;
    color: #191919;
    display: flex;
    justify-content: space-between;
 
}

.forget label input {
  margin-right: 3px;
}

    .forget label a {
        color: #191919;
        text-decoration: none;
    }

.forget label a:hover {
  text-decoration: underline;
}

.register {
    font-size: .9em;
    color: #191919;
    text-align: center;
    margin: 25px 0 10px;
}

    .register p a {
        text-decoration: none;
        color: #191919;
        font-weight: 600;
    }

.register p a:hover {
  text-decoration: underline;
}

