
:root {
    --bs-primary-rgb: 60, 56, 99;
}

.btn {
    background: #2a2d40;
    border: #2a2d40;
}

.container-login {
    max-width: 600px;
    height:500px;
    width:100%;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
}


.alert {
    color: 20284e;
    margin-bottom: 15px;
}

.position-relative {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.form-control {
    height: 50px;
    align-items: center;
    justify-content: center;
}

/* CONTAINER */

.container-login {
    width:100%;
    max-width:420px;
    background:white;
    border-radius:18px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

/* TITULO */

.card-title {
    font-weight:700;
}

/* INPUT BOX (igual Vue login) */

.input-group {
    border:1px solid #e5e7eb;
    border-radius:10px;
    overflow:hidden;
    transition:.2s;
}

.input-group:focus-within {
    border-color:#6366f1;
    box-shadow:0 0 0 2px rgba(99,102,241,.1);
}

.input-group-text {
    border:none !important;
}

.form-control {
    border:none !important;
    outline:none;
}

.form-control:focus {
    box-shadow:none;
}

/* BOTÃO LOGIN STYLE */

.btn-primary {
    width:100%;
    border:none;
    border-radius:10px !important;
    padding:14px;
    font-weight:600;
    color: white;
    background:linear-gradient(135deg,#0003c5,#05005e);
    transition:.25s;
}

.btn-primary:hover {
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(79,70,229,.25);
}

/* ALERT SUCCESS */

.alert-success {
    border-radius:10px;
    border:none;
}

/* RESPONSIVO */

@media (max-width:768px) {

    .container-login {
        padding:30px 20px;
    }

}
