main {
    width: min(150ch, 100%);

}

body {
    background-color: rgb(233, 237, 247);
}

.sublogincont {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
    margin: 20px;

}

.logincont {
    background-color: rgb(245, 248, 254);
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

input {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'BYekan';

}

input:hover {
    box-shadow: 0px 2px 5px rgba(0, 0, 149, 0.2);
}

input:focus {
    box-shadow: 0px 4px 10px rgba(0, 0, 149, 0.3);
}

button {
    border: none;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 16px;
    background-color: rgb(225, 110, 110);
    color: white;
}

button:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

.logo {

    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logol {
    max-width: 300px;
}

.loginfooter {

    display: flex;
    flex-direction: column;
    text-align: center;

}

.loginfooter>* {
    color: rgb(49, 141, 193);
    margin-block: 1rem;
}


.loginmidbar {
    display: flex;
    justify-content: space-between;
}

.right {
    display: flex;
    gap: 0.5rem;
}

#remember {
    width: auto;
    padding: 10px;
    border: solid 2px rgb(49, 141, 193);

    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.0);
    border-radius: 10px;
    font-family: 'BYekan';
}

.right>* {
    color: rgb(49, 141, 193);

}

.left>* {
    color: rgb(49, 141, 193);

}