.dealer-auth{

    min-height:50vh;

    padding:80px 20px;

    background:

        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.65)
        ),

        url('/storage/banners/dealer-bg.jpg');

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;
}

.dealer-auth-box{

    max-width:700px;

    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.dealer-auth-box h1{

    font-size:42px;

    margin-bottom:15px;

    text-align:center;
}

.dealer-auth-box p{

    text-align:center;

    color:#666;

    margin-bottom:40px;
}

.dealer-auth-box form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.dealer-auth-box input,
.dealer-auth-box textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;
}

.dealer-auth-box textarea{

    height:140px;

    resize:none;
}

.upload-label{

    font-weight:600;

    margin-top:10px;
}

.dealer-auth-box button{

    background:#ff6600;

    color:#fff;

    border:none;

    padding:18px;

    border-radius:12px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}

.dealer-auth-box button:hover{

    background:#e65c00;
}
/* ALERT */

.dealer-alert{

    background:#ffe5e5;

    color:#cc0000;

    padding:14px;

    border-radius:10px;

    margin-bottom:20px;

    font-size:14px;
}

/* FOOTER */

.dealer-auth-footer{

    text-align:center;

    margin-top:25px;
}

.dealer-auth-footer p{

    color:#ddd;
}

.dealer-auth-footer a{

    color:#ff6600;

    text-decoration:none;

    font-weight:600;
}
