
/* GLOBAL RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

/* ============================= */
/* LOGIN PAGE */
/* ============================= */

.login-wrapper{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
background:#f4f6fb;
padding:20px;
}

.login-card{
width:100%;
max-width:420px;
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.login-card h2{
text-align:center;
margin-bottom:25px;
}

.login-card input{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
}

.login-card input:focus{
outline:none;
border-color:#6c63ff;
}

.login-card button{
width:100%;
padding:14px;
border:none;
border-radius:6px;
background:#6c63ff;
color:white;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.login-card button:hover{
background:#574bdb;
}

.error{
color:red;
text-align:center;
margin-bottom:15px;
}

.register-link{
text-align:center;
margin-top:15px;
}


/* ============================= */
/* REGISTER PAGE */
/* ============================= */

.register-wrapper{
min-height:100%;
display:flex;
align-items:center;
justify-content:center;
background:#f4f6fb;
padding:20px;
}

.register-card{
width:100%;
max-width:820px;
background:#ffffff;
padding:40px;
border-radius:12px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.register-card h2{
text-align:center;
margin-bottom:25px;
font-size:26px;
}

.register-card label{
display:block;
margin-top:15px;
margin-bottom:6px;
font-weight:600;
}

.register-card input,
.register-card select{
width:100%;
padding:12px;
border-radius:6px;
border:1px solid #ddd;
font-size:15px;
}

.register-card input:focus,
.register-card select:focus{
outline:none;
border-color:#6c63ff;
}


/* REGISTER BUTTON */

.btn-register{
width:100%;
padding:14px;
background:#ff4d6d;
border:none;
color:white;
font-size:16px;
border-radius:5px;
cursor:pointer;
}

button:hover{
background:#e63956;
}

.msg{
text-align:center;
color:green;
}


/* ============================= */
/* NAVBAR */
/* ============================= */

/* Navbar */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 40px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/* Logo */

.logo-area{
display:flex;
align-items:center;
}

.logo-img{
height:80px;
}

/* Right Menu */

.nav-links{
display:flex;
align-items:center;
gap:25px;
}

/* Menu Links */

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
font-size:15px;
}

.nav-links a i{
margin-right:6px;
}

/* Login Button */

.login-btn{
background:#ff4b6e;
color:white !important;
padding:8px 18px;
border-radius:6px;
}

.login-btn:hover{
background:#e63c5c;
}

.footer{
background:#111;
color:#ccc;
padding-top:50px;
margin-top:60px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:bar;

}
/* BOTTOM */

.footer-bottom{
border-top:1px solid #222;
padding:15px 20px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
font-size:13px;
}

.footer-bottom a{
color:#ff4b6e;
text-decoration:none;
}

.designer{
opacity:0.8;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media(max-width:768px){

.navbar{
padding:12px 20px;
}

.nav-links{
gap:15px;
}

.register-card,
.login-card{
padding:25px;
}

}