@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --main-color: #568fac;
}

html,
body {
    height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
}

.container {
    width: 40vw;
    height: 60dvh;
    margin: 4dvh auto 10dvh auto;
    flex: 1;
    /* background-color: #fff; */
    display: flex;
    flex-direction: column;
}

.container .logo {
    text-align: center;
    padding: 30px;
    /* background-color: gray; */
}

.container .logo img {
    max-width: 300px;
    height: auto;
}

.container .login-box {
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-box .form-container {
    width: 60%;
}

.form-container h3.head {
    margin-bottom: 20px;
    text-align: start;
    font-weight: 400;
}

.form-container .form-group {
    margin-bottom: 10px;
}

.form-container .check-option {
    display: flex;
    align-items: center;
    margin: 15px auto;
    font-size: .9rem;
}

.form-container .check-option input {
    scale: 1.2;
    margin-right: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: .9rem;
}

.form-group .password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group span.eye-icon {
    position: absolute;
    /* border: 1px solid; */
    font-size: 1rem;
    right: 20px;
    cursor: pointer;
}

.form-group input {
    width: 100%;
    padding: 10px;
}

/* 
.form-group input {
    padding: 10px;
} */

.form-container .login-btn {
    display: block;
    margin: 15px auto;
    padding: 8px 10px;
    background-color: #000;
    color: #fff;
    border: none;
    width: 100%;
    cursor: pointer;
}

.form-container .create-btn {
    padding: 10px;
    margin: 20px auto;
}

.form-container .login-btn:hover {
    background-color: #272727;
}

.form-container .links-wrapper {
    display: flex;
    padding: 0 10px;
    justify-content: space-between;
}

.form-container a {
    font-size: .9rem;
    color: #000;
}


footer {
    width: 100%;
    height: 10dvh;
    background-color: #fff;
}