html,
body {
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffff99;
}

.login-form__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    width: 600px;
    border: 2px solid #000000;
    border-radius: 20px;
    background-color: #ffffff;
}

.logo {
    width: 300px;
    height: 75px;
}

.main-section {
    font-size: 24px;
    color: #000000;
    margin: 20px 0;
}

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

.login-label {
    font-size: 20px;
    color: #000000;
    margin: 0;
}

.login-input {
    width: 350px;
    height: 40px;
    border: 2px solid #cccccc;
    border-radius: 5px;
    font-size: 20px;
    color: #000000;
    line-height: 20px;
    padding-left: 10px;
}

.form-error {
    font-size: 16px;
    color: #ff0000;
    font-weight: bold;
    line-height: 30px;
    min-height: 30px;
    margin-bottom: 20px;
}

.login-btn {
    width: 350px;
    height: 50px;
    border: none;
    border-radius: 10px;
    background-color: #ff6600;
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
    margin-bottom: 40px;
    cursor: pointer;
}

.links{
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.link{
    font-size: 18px;
    color: #0000ff;
    text-decoration: none;
}

.link:hover{
    text-decoration: underline;
}