/* ==========================================
   RTP Login Page
========================================== */

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

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#ffffff;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.login-card{
    width:420px;
    background:#181818;
    border:1px solid #2b2b2b;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.45);
}

.logo-area{
    text-align:center;
    margin-bottom:30px;
}

.logo{
    width:80px;
    margin:0 auto 15px;
}

.logo-area h1{
    color:#FFD700;
    font-size:26px;
    margin-bottom:6px;
}

.logo-area p{
    color:#9b9b9b;
    font-size:14px;
}

.input-group{
    margin-bottom:20px;
}

.input-group label{
    display:block;
    margin-bottom:8px;
    color:#cccccc;
}

.input-group input{
    width:100%;
    height:48px;
    background:#111111;
    border:1px solid #2b2b2b;
    border-radius:12px;
    color:#ffffff;
    padding:0 15px;
    outline:none;
}

.input-group input:focus{
    border-color:#FFD700;
}

.login-btn{
    width:100%;
    height:48px;
    background:#FFD700;
    color:#111111;
    border:none;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    margin-top:10px;
    transition:.3s;
}

.login-btn:hover{
    transform:translateY(-2px);
}

.google-btn{
    width:100%;
    height:48px;
    margin-top:15px;
    background:#111111;
    color:#ffffff;
    border:1px solid #2b2b2b;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.google-btn:hover{
    border-color:#FFD700;
}

.login-links{
    text-align:center;
    margin-top:25px;
}

.login-links a{
    color:#FFD700;
    text-decoration:none;
}

.login-links p{
    margin-top:12px;
    color:#bdbdbd;
}
