@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("../global.css");

* {
    font-family: "Inter", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #0e0e0e;
    background: #fff;
}

p {
    color: #fff;
    padding: 15px 0px;
}

.principalTitle {
    font-weight: 200;
    color: white;
    color: rgba(0,0,0,.8);
    margin-bottom: 60px;
    font-size: 34px;
}

.contentDiv {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    /* background-color: rgba(240, 248, 255, 0.205); */
}

.header {
    width: 100%;
    height: 10vh;
    /* background-color: rgba(255, 0, 0, 0.24); */
}

.header img {
    -webkit-user-drag: none;
    user-select: none;
    height: 100%;
}

.principalDiv {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 63%;
    margin: 60px;
}

.principal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 70vh;
    /* background-color: rgba(0, 47, 255, 0.185); */
}

.formDiv {
    width: 23vw;
}

.formDiv form {
    display: flex;
    flex-direction: column;
}

.formDiv label {
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 13px;
    color: #24a2dc;
    color: var(--scicrop-green-01);
}

.formDiv form input {
    height: 54px;
    font-size: 16px;
    margin: 10px 0;
    padding-left: 20px;
    border-radius: 20px;
    border: none;
    border: 1px solid rgba(0,0,0,.3);
}

.formEmailInput {
    margin-top: 22px !important;
}

.formPasswordInput {
    margin-bottom: 5px !important;
}

.redirectPasswordDiv {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: auto;
}

.redirectPasswordDiv a {
    margin-top: 5px;
    text-decoration: none;
    color: #0091e4;
    color: var(--scicrop-green-01);
}

.formDiv button {
    height: 45px;
    width: 110px;
    border: none;
    border-radius: 20px;
    margin-top: 10px;
    background-color: #24a2dc;
    background: var(--scicrop-green-01);
    font-size: 15px;
    color: white;
    cursor: pointer;
}

.formDiv button:hover {
    background-color: #1e89bb;
}

.imageDiv img {
    height: 100%;
    width: 100%;
    object-fit: cover;

    -webkit-user-drag: none;
    user-select: none;
}

.imageDiv {
    background-color: rgba(250, 235, 215, 0.125);
    width: 100%;
    height: 100%;
}

.buttonEnterDiv {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
