/* ==========================================
   Raja Studio V2
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f6f9;
    color:#333;
}

.container{
    width:95%;
    max-width:420px;
    margin:40px auto;
}

.card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.logo{
    font-size:36px;
    text-align:center;
    margin-bottom:10px;
}

.title{
    text-align:center;
    color:#28a745;
    font-size:32px;
    font-weight:bold;
}

.subtitle{
    text-align:center;
    color:#777;
    margin-top:8px;
    margin-bottom:25px;
    font-size:18px;
}

/* Mobile Number */

.mobile-label{
    text-align:center;
    font-size:17px;
    color:#666;
    font-weight:600;
    margin-bottom:10px;
}

.input{
    width:100%;
    padding:15px;
    border:1px solid #ccc;
    border-radius:10px;
    font-size:18px;
    text-align:center;
    outline:none;
    transition:.3s;
}

.input:focus{
    border-color:#28a745;
    box-shadow:0 0 8px rgba(40,167,69,.20);
}

/* Button */

.btn{
    width:100%;
    padding:15px;
    margin-top:15px;
    background:#28a745;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.btn:hover{
    background:#218838;
}

/* Footer */

.footer{
    text-align:center;
    margin-top:20px;
}

.footer p{
    margin-bottom:8px;
    font-size:18px;
    font-weight:bold;
}

.phone,
.whatsapp{
    display:block;
    text-align:center;
    margin-top:10px;
    font-size:18px;
    line-height:1.6;
}

.phone a,
.whatsapp a{
    text-decoration:none;
    color:#3366cc;
    font-weight:bold;
}

.footer a{
    text-decoration:none;
    color:#3366cc;
    font-weight:600;
}

/* Messages */

.message{
    text-align:center;
    margin-top:15px;
    font-weight:bold;
}

.success{
    color:#28a745;
}

/* Mobile */

@media(max-width:480px){

.container{
    margin-top:20px;
}

.title{
    font-size:28px;
}

.subtitle{
    font-size:16px;
}

.input{
    font-size:18px;
}

.btn{
    font-size:18px;
}

}