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

.login {
    display: flex;
    width: 500px;
    height: 550px;
    background: var(--main-bg-color);
    color: var(--text-color);
}

form {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-color);
}

.login-logo {
    width: 250px;
    margin-left: 70px;
    margin-bottom: 25px;
}

h2 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-color);
}

input {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #2a3020;
    outline: none;
    font-size: 14px;
    background: transparent;
    transition: 0.3s;
    color: var(--text-color);
}

input:focus {
    border-bottom: 1px solid #2a3020;
    color: var(--text-color);
}

button {
    margin-top: 10px;
    padding: 12px;
    border: none;
    background: #2a3020;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    color: #ffffff;
}

button:hover {
    background: #5e5f20;
    color: white;
}

.alert-danger {
    color: red;
    margin-bottom: 15px;
}

.reg-link {
    text-align: center;
}
