body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#form-lgn {
    width: 80%;
    padding: 30px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.126);
    border-radius: 15px;
}

#form-lgn h1 {
    font-size: 25px;
    font-weight: 800;
}

#form-lgn label {
    font-size: 15px;
    font-weight: 800;
}

.auth-copy {
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

#form-lgn input {
    width: 97%;
    padding: 10px;
    border-style: solid;
    border-width: 0.2px;
    border-color: #000;
    border-radius: 7px;
    margin-bottom: 20px;
}

.password-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

#form-lgn .password-row input {
    width: 100%;
    margin-bottom: 0;
}

#form-lgn .password-toggle {
    width: auto;
    min-width: 68px;
    padding: 10px 12px;
    border: 1px solid #000;
    border-radius: 7px;
    background-color: #f6f6f6;
    color: #111;
    font-size: 13px;
    cursor: pointer;
}

#btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#form-lgn button {
    width: 99.7%;
    padding: 10px;
    border-style: none;
    font-size: 15px;
    border-radius: 10px;
    background-color: rgb(0, 140, 255);
    color: #fff;
}

#form-lgn .auth-button {
    display: block;
    width: 99.7%;
    padding: 10px 0;
    border-radius: 10px;
    background-color: rgb(0, 140, 255);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
}

.error-banner{
    width: 96%;
    padding: 15px;
    background-color: rgba(252, 95, 95, 0.119);
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: rgb(252, 63, 63);
    margin-bottom: 20px;
}

.success-banner {
    width: 96%;
    padding: 15px;
    background-color: rgba(47, 168, 85, 0.12);
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: rgb(47, 168, 85);
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    #form-lgn {
        width: 35%;
        padding: 30px;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.126);
        border-radius: 15px;
    }
}
