/* -----------Import root styles------------- */
@import '../general/general.css';

.main-login {
    width: 100vw;
    height: 100%;

    display: flex;
    flex-direction: row;
    overflow-y: auto;
}

.main-login__container {
    width: 96.5%;
    height: 100%;
    margin-left: 3.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.login-main-container{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.form-login__container {
	width: min(100% - 5rem, 350px);
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  	margin-inline: auto;
}

.form-login__container-login {
	width: min(100% - 5rem, 350px);
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  	margin-inline: auto;
}

.form-signup__container {
	width: min(100% - 5rem, 350px);
    min-height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  	margin-inline: auto;
}

.form-container__logo {
    width: 60%;
    margin-bottom: 30px;
}

.login-title {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.error {
    width: 70%;
    color: white;
    font-size: var(--font-size-regular);
    background-color: var(--background-error-message);
    padding: 10px 20px;
    border-radius: 8px;
    margin: 5px 0px;
    text-align: center;
    line-height: 1.4;
}

.form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-input{
    width: 72%;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid lightgray;
    margin: 5px 0px;
    outline: none;
}

.form-input::placeholder{
    color: rgb(187, 187, 187);
    font-size: 12px;
}

.login-button {
    width: 72%;
    margin: 20px 0px;
    padding: 8px 0px;
}

.selector-view-instructions {
    width: 85%;
    line-height: 1.5;
}