#login-section {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.main-content {
    height: fit-content;
    max-width: 450px;
}

#login-section p,
h2 {
    text-align: center;
}

h2 {
    font-family: sans-serif;
    letter-spacing: 2px !important;
}

#login-section input {
    display: block;
    padding: 12px 14px;
    border-radius: 0;
    border: 1px solid #e7e7e7;
    width: 100%;
    line-height: normal;
    resize: none;
    transition: border-color .1s ease-in-out;
    background: transparent;
    margin: 10px 0;
}

#login-section input:focus {
    border-color: #000000;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

#login-section button {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 0px;
    margin: 10px 0;
}

#login-section button:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

#login-section a {
    text-decoration: none;
    color: #6a6a6a;
}

#login-section a:hover {
    color: #9d9d9d;
}
