/* GENERAL */
body{
margin:0;
font-family:Segoe UI, Arial, sans-serif;
background:#ffffff;
color:#cc0000;
}

/* HEADER */
.header{
background:#ffffff;
text-align:center;
padding:25px 10px;
border-bottom:2px solid #cc0000;
}

/* LOGO */
.logo-box img{
width:260px;
}

/* TAGLINE */
.tagline{
color:#cc0000;
margin-top:10px;
font-weight:500;
letter-spacing:1px;
}

/* NAVBAR */
.nav{
background:#ffffff;
text-align:center;
padding:14px;
border-bottom:1px solid #cc0000;
}

.nav a{
color:#cc0000;
text-decoration:none;
margin:0 15px;
font-weight:600;
}

.nav a:hover{
color:black;
}

/* LOGIN BUTTON */
.login-btn{
background:#cc0000;
color:white !important;
padding:7px 15px;
border-radius:6px;
}

/* REGISTER BUTTON */
.register-btn{
background:#cc0000;
color:white !important;
padding:7px 15px;
border-radius:6px;
}

/* DROPDOWN */
.dropdown{
display:inline-block;
position:relative;
}

.dropdown-content{
display:none;
position:absolute;
background:#ffffff;
min-width:200px;
text-align:left;
box-shadow:0 4px 10px rgba(0,0,0,0.15);
border:1px solid #cc0000;
}

.dropdown-content a{
display:block;
padding:10px;
margin:0;
color:#cc0000;
}

.dropdown:hover .dropdown-content{
display:block;
}

/* HERO SECTION */
.hero{
text-align:center;
padding:100px 20px;
background:#ffffff;
}

.hero h2{
font-size:36px;
margin-bottom:10px;
color:#cc0000;
}

.hero p{
font-size:18px;
color:#444;
}

/* CONTENT */
.content{
max-width:900px;
margin:auto;
padding:60px 20px;
text-align:center;
}

.content h2{
margin-bottom:20px;
color:#cc0000;
}

.content p{
font-size:17px;
line-height:28px;
color:#444;
}

/* BUTTON */
button{
margin-top:20px;
padding:10px 22px;
background:#cc0000;
border:none;
color:white;
border-radius:6px;
cursor:pointer;
font-weight:600;
}

button:hover{
background:black;
}

/* FOOTER */
.footer{
background:#ffffff;
text-align:center;
padding:20px;
margin-top:40px;
border-top:1px solid #cc0000;
color:#cc0000;
}

/* NAV FIXED TOP */
.nav{
position:fixed;
top:0;
width:100%;
background:#ffffff;
border-bottom:1px solid #cc0000;
z-index:999;
}

/* NAV CONTAINER */
.nav-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:10px 20px;
}

/* LOGO IN NAV */
.nav-logo img{
height:45px;
}

/* MENU RIGHT SIDE */
.nav-menu a{
color:#cc0000;
text-decoration:none;
margin-left:18px;
font-weight:600;
}

/* SPACE BELOW NAV (important) */
body{
padding-top:70px;
}

/* MOBILE MENU BUTTON */
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#cc0000;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px){

.nav-container{
flex-direction:row;
justify-content:space-between;
}

.nav-menu{
display:none;
flex-direction:column;
background:white;
position:absolute;
top:65px;
right:0;
width:250px;
border-left:1px solid #cc0000;
}

.nav-menu a{
display:block;
padding:12px;
margin:0;
border-bottom:1px solid #eee;
}

.show-menu{
display:flex;
}

.menu-toggle{
display:block;
}

.dropdown-content{
position:relative;
box-shadow:none;
}
}

/* LOGIN BOX */
.login-box{
background:white;
max-width:400px;
margin:auto;
padding:40px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.login-box h2{
color:#cc0000;
margin-bottom:20px;
}

/* INPUT FIELDS */
.login-box input{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:6px;
font-size:16px;
}

.login-box input:focus{
outline:none;
border-color:#cc0000;
}

.login-section{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:white;
}

.box{
background:white;
padding:40px;
width:320px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
text-align:center;
}

.box input{
width:100%;
padding:12px;
margin:10px 0;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.box button{
width:100%;
padding:12px;
background:#ff0000;
color:white;
border:none;
border-radius:6px;
font-weight:600;
cursor:pointer;
}

.box button:hover{
background:#cc0000;
}

.switch-page{
margin-top:15px;
font-size:14px;
}

select{
width:100%;
padding:12px;
margin:10px 0;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
background:white;
}