/* ==========================================================
   Dawn of the Tiger Publishing
   Register Module Styles
   File: /modules/login/assets/css/style.css
   ========================================================== */


/* ==========================================================
   PAGE
   ========================================================== */

/* ==========================================================
   PAGE
   ========================================================== */

.site-body {

    background: linear-gradient(
        135deg,
        #334155 0%,
        #475569 50%,
        #64748b 100%
    );

    color:#f8fafc;

    min-height:100vh;

}
/* ==========================================================
   REGISTER CONTAINER
   ========================================================== */

.login-page .row {
    margin-top:60px;
    margin-bottom:60px;
}


/* ==========================================================
  LOGIN PANEL
   ========================================================== */

.login-panel {
    background:#1e293b;
    border-radius:14px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.40);
}


/* ==========================================================
   HEADINGS
   ========================================================== */


.login-page h1 {
    color:#ffffff;
}

.login-page h2 {
    color:#cbd5e1;
}

.login-page p {
    color:#cbd5e1;
}

.login-page a {
    color:#60a5fa;
}


/* ==========================================================
   PARAGRAPHS
   ========================================================== */

p {

    color: #cbd5e1;

}


/* ==========================================================
   LINKS
   ========================================================== */

a {

    color: #60a5fa;

    text-decoration: none;

}

a:hover {

    color: #93c5fd;

    text-decoration: underline;

}


/* ==========================================================
   LABELS
   ========================================================== */

.form-label {

    color: #f1f5f9;

    font-weight: 600;

}


/* ==========================================================
   INPUTS
   ========================================================== */

.form-control {

    background: #0f172a;

    color: #ffffff;

    border: 1px solid #334155;

    border-radius: 8px;

    padding: 12px;

}

.form-control::placeholder {

    color: #94a3b8;

}

.form-control:focus {

    background: #0f172a;

    color: #ffffff;

    border-color: #3b82f6;

    box-shadow:
        0 0 0 .25rem rgba(59,130,246,.25);

}


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

.btn-success {

    width: 100%;

    padding: 12px;

    font-size: 1rem;

    font-weight: bold;

    border-radius: 8px;

    transition: all .25s ease;

}

.btn-success:hover {

    transform: translateY(-2px);

}


/* ==========================================================
   ALERTS
   ========================================================== */

.alert {

    border-radius: 8px;

    margin-bottom: 20px;

}


/* ==========================================================
   FOOTER LINK
   ========================================================== */

.mt-3 {

    text-align: center;

}


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

@media (max-width:768px){

    .row.justify-content-center{

        margin-top:30px;

        margin-bottom:30px;

    }

    .col-md-5{

        margin:15px;

        padding:25px;

    }

    h1{

        font-size:1.7rem;

    }

    h2{

        font-size:1.2rem;

    }

}