

/* =====================================
   PAGE-SPECIFIC STYLES (moved from HTML)
===================================== */
/* =====================================
   LOGIN PAGE
===================================== */

.login-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px 20px;

    box-sizing:border-box;

    background:#fffdf5;

}


/* =====================================
   LOGIN CARD
===================================== */

.login-card{

    width:100%;

    max-width:420px;

    background:white;

    padding:45px 35px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 15px 40px
    rgba(0,0,0,.08);

    box-sizing:border-box;

}


/* =====================================
   LOGO
===================================== */

.login-logo{

    font-size:32px;

    font-weight:bold;

    letter-spacing:2px;

    margin-bottom:8px;

}


.login-subtitle{

    color:#777;

    font-size:14px;

    margin-bottom:35px;

}


/* =====================================
   TITLE
===================================== */

.login-card h1{

    margin:0 0 10px;

    font-size:28px;

}


.login-card p{

    color:#777;

    margin-bottom:30px;

}


/* =====================================
   GOOGLE BUTTON
===================================== */

.google-login-btn{

    width:100%;

    padding:15px 20px;

    border:none;

    border-radius:16px;

    background:#000;

    color:white;

    font-family:inherit;

    font-size:16px;

    cursor:pointer;

    transition:.25s;

}


.google-login-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 8px 20px
    rgba(0,0,0,.15);

}


.google-login-btn:disabled{

    opacity:.6;

    cursor:not-allowed;

    transform:none;

}


/* =====================================
   BACK BUTTON
===================================== */

.back-home-btn{

    display:inline-block;

    margin-top:20px;

    padding:12px 20px;

    border-radius:15px;

    background:#f3f3f3;

    color:#222;

    text-decoration:none;

    font-size:14px;

}


.back-home-btn:hover{

    background:#e9e9e9;

}


/* =====================================
   MESSAGE
===================================== */

#loginMessage{

    margin-top:20px;

    min-height:20px;

    font-size:14px;

    color:#777;

}


/* =====================================
   MOBILE
===================================== */

@media(max-width:500px){

    .login-card{

        padding:35px 22px;

    }


    .login-logo{

        font-size:27px;

    }


    .login-card h1{

        font-size:24px;

    }

}
