@import 'style.css';

section {
    flex-direction: column;
    height: 100vh;
}

.container{
    margin-bottom: 10%;
}

.form-container {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white-color);
}

.form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

h2 {
    font-size: 30px;
}

form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
}

p {
    font-size: 14px;
}

.input-container {
    position: relative;
}

.input {
    padding-right: 40px;
    padding: 18px 10px;
    font-size: 16px;
    border-radius: 8px;
    background-color: var(--bg-color);
    color: var(--white-color);
    border: 2px solid var(--white-color);
    outline: none;
    width: 100%;
}

.input-text {
    margin-top: 16px;
}

button:hover {
    opacity: 0.8;
}

.show-password {
    position: absolute;
    right: 10px;
    top: 62%;
    transform: translateY(-50%);
    cursor: pointer;
}

.show-password i {
    font-size: 20px;
}


#logo {
    width: 120px;
    margin-bottom: 16px;
    display: block;
}