/* **************************************************************************** */
/* ******************************** ACCESS PAGE ******************************* */
/* **************************************************************************** */

#main {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 24px;
}


/* **************************************************************************** */
/* ******************************** ACCESS CARD ******************************* */
/* **************************************************************************** */

.access-card {
    width: 100%;
    max-width: 420px;

    padding: 42px;

    background: rgba(255, 255, 255, 0.25);

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 12px 35px rgba(60, 30, 30, 0.10);
}


/* **************************************************************************** */
/* *********************************** LOGO *********************************** */
/* **************************************************************************** */

.access-logo {
    display: flex;
    justify-content: center;

    margin-bottom: 24px;
}


.access-logo img {
    display: block;

    width: 135px;
    height: 135px;

    object-fit: contain;
}


/* **************************************************************************** */
/* ********************************** HEADER ********************************** */
/* **************************************************************************** */

.access-header {
    margin-bottom: 30px;

    text-align: center;
}


.access-header h1 {
    margin: 0;

    font-size: 25px;
    font-weight: 700;
}


.access-description {
    margin: 9px 0 0;

    font-size: 14px;
    line-height: 1.5;

    color: #666666;
}


/* **************************************************************************** */
/* *********************************** FORM *********************************** */
/* **************************************************************************** */

.form-group label {
    display: block;

    margin-bottom: 8px;

    text-align: center;

    font-size: 14px;
    color: #666666;
}


.form-group > input {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d5d5d5;
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.70);

    color: #181818;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group input:focus {
    border-color: #181818;

    box-shadow: 0 0 0 2px rgba(24, 24, 24, 0.08);
}


.access-card form > button {
    width: 100%;

    margin-top: 18px;
    padding: 14px 18px;

    border: 1px solid #181818;
    border-radius: 9px;

    background: #181818;
    color: #ffffff;

    font-weight: 500;

    cursor: pointer;

    transition: background 0.2s ease;
}


.access-card form > button:hover {
    background: #333333;
}


/* **************************************************************************** */
/* *********************************** ERROR ********************************** */
/* **************************************************************************** */

.error {
    margin: 0 0 18px;
    padding: 10px 12px;

    border-radius: 8px;

    background: rgba(160, 0, 0, 0.08);

    color: #8f1d1d;

    font-size: 14px;
}


/* **************************************************************************** */
/* ********************************** MOBILE ********************************** */
/* **************************************************************************** */

@media (max-width: 520px) {

    #main {
        padding: 16px;
    }


    .access-card {
        padding: 32px 24px;

        border-radius: 16px;
    }


    .access-logo img {
        width: 115px;
        height: 115px;
    }


    .access-header h1 {
        font-size: 22px;
    }
}