.login-container {
    width: 100%;
    height: 100%;
    position: absolute;
    display: grid;
    align-items: center;
    justify-items: center;
}

.login-card {
    width: 450px;
    height: 450px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-row {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.login-logo {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.login-form {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}