/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family:'Poppins', sans-serif;
    overflow-x:hidden;
}

/* CONTAINER LOGIN */
.login-container{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;

    background:
        radial-gradient(circle at top left,
        rgba(255,255,255,0.10),
        transparent 35%),

        radial-gradient(circle at bottom right,
        rgba(255,255,255,0.08),
        transparent 35%),

        linear-gradient(135deg,
        #d40000,
        #ff2d2d);

    position:relative;
}

/* EFEITOS FUNDO */
.login-container::before{
    content:'';

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(255,255,255,0.05);

    border-radius:50%;

    top:-120px;
    left:-120px;
}

.login-container::after{
    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(255,255,255,0.04);

    border-radius:50%;

    bottom:-120px;
    right:-120px;
}

/* BOX LOGIN */
.login-box{

    width:100%;
    max-width:420px;

    background:#ffffff;

    border-radius:35px;

    padding:40px 30px;

    position:relative;
    z-index:2;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.15),
        0 5px 20px rgba(0,0,0,0.08);

    overflow:hidden;
}

/* DETALHE BOX */
.login-box::before{

    content:'';

    position:absolute;

    top:-90px;
    right:-90px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(255,0,0,0.03);
}

/* LOGO */
.logo-circle{

    width:95px;
    height:95px;

    margin:auto;

    border-radius:30px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(
        135deg,
        #d40000,
        #ff4b4b
    );

    color:white;

    font-size:42px;

    box-shadow:
        0 10px 25px rgba(212,0,0,0.25);
}

/* TITULO */
.login-box h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:5px;
}

.login-box p{
    color:#777;
}

/* LABEL */
.form-label{
    font-size:14px;
    font-weight:500;
    margin-bottom:8px;
    color:#333;
}

/* INPUTS */
.custom-input{

    border-radius:18px;

    overflow:hidden;

    border:1px solid #ededed;

    background:#fafafa;

    transition:0.3s;
}

.custom-input:focus-within{

    border-color:#ff4b4b;

    box-shadow:
        0 0 0 4px rgba(255,75,75,0.08);
}

/* ÍCONES INPUT */
.custom-input .input-group-text{

    border:none;

    background:transparent;

    color:#d40000;

    padding-left:18px;

    font-size:18px;
}

/* INPUT */
.custom-input .form-control{

    border:none;

    background:transparent;

    height:58px;

    font-size:15px;

    box-shadow:none;
}

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

/* CHECKBOX */
.form-check-input{

    width:18px;
    height:18px;

    cursor:pointer;
}

.form-check-label{

    margin-left:6px;

    font-size:14px;
}

/* LINK ESQUECI SENHA */
.forgot-link{

    text-decoration:none;

    color:#d40000;

    font-size:14px;

    font-weight:600;
}

/* BOTÃO LOGIN */
.btn-login{

    width:100%;

    height:58px;

    border:none;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #d40000,
            #ff3d3d
        );

    color:white;

    font-size:18px;

    font-weight:600;

    transition:0.3s;
}

.btn-login:hover{

    transform:translateY(-3px);

    box-shadow:
        0 15px 30px rgba(212,0,0,0.25);
}

/* SUPORTE */
.support-box{

    margin-top:25px;

    text-align:center;
}

.support-box small{

    display:block;

    color:#999;

    margin-bottom:8px;
}

.support-box a{

    text-decoration:none;

    color:#d40000;

    font-weight:600;

    font-size:16px;
}

/* RESPONSIVO */
@media(max-width:480px){

    .login-box{

        padding:35px 22px;

        border-radius:30px;
    }

    .login-box h2{
        font-size:28px;
    }

    .logo-circle{

        width:85px;
        height:85px;

        font-size:36px;
    }

}