/* ==========================================
   ECEM Online Examination Portal
   Version 7.0
   register.css
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:linear-gradient(135deg,#1565c0,#42a5f5);

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px;

}

.container{

    width:100%;

    max-width:1100px;

}

.register-box{

    background:#ffffff;

    border-radius:15px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.logo{

    text-align:center;

    margin-bottom:30px;

}

.logo img{

    width:100px;

    height:100px;

    border-radius:50%;

    border:4px solid #1565c0;

    object-fit:cover;

}

.logo h1{

    margin-top:15px;

    color:#1565c0;

    font-size:30px;

}

.logo p{

    color:#666;

    margin-top:5px;

}

form h2{

    text-align:center;

    margin-bottom:30px;

    color:#0d47a1;

}

.row{

    display:flex;

    gap:20px;

    margin-bottom:20px;

}

.input-group{

    flex:1;

    display:flex;

    flex-direction:column;

}

.full-width{

    width:100%;

}

label{

    font-weight:bold;

    margin-bottom:8px;

    color:#333;

}

/* ===========================
   Input Fields
=========================== */

input,
select,
textarea{

    width:100%;

    padding:14px;

    border:2px solid #dcdcdc;

    border-radius:8px;

    outline:none;

    font-size:16px;

    transition:.3s;

}

input:focus,
select:focus,
textarea:focus{

    border-color:#1565c0;

    box-shadow:0 0 10px rgba(21,101,192,.25);

}

textarea{

    resize:vertical;

}

/* ===========================
   File Upload
=========================== */

input[type=file]{

    padding:10px;

    background:#f5f5f5;

}

/* ===========================
   Register Button
=========================== */

.register-btn{

    width:100%;

    padding:16px;

    background:#1565c0;

    color:#fff;

    border:none;

    border-radius:8px;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

    margin-top:15px;

}

.register-btn:hover{

    background:#0d47a1;

    transform:translateY(-2px);

}

.register-btn i{

    margin-right:8px;

}

/* ===========================
   Login Link
=========================== */

.login-link{

    text-align:center;

    margin-top:25px;

    font-size:16px;

}

.login-link a{

    color:#1565c0;

    text-decoration:none;

    font-weight:bold;

}

.login-link a:hover{

    text-decoration:underline;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

.row{

    flex-direction:column;

}

.register-box{

    padding:20px;

}

.logo h1{

    font-size:24px;

}

.logo img{

    width:80px;

    height:80px;

}

.register-btn{

    font-size:16px;

}

}

/* ===========================
   Animation
=========================== */

.register-box{

    animation:fadeIn .8s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}