*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f4f4;
}

/* Header */
header{
    background:#0d6efd;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
}

.logo h2{
    font-size:22px;
}

.title h1{
    font-size:32px;
}

.buttons button{
    padding:10px 18px;
    margin-left:10px;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-weight:bold;
}

.buttons button:hover{
    background:#ddd;
}

/* Layout */
.container{
    display:flex;
}

/* Sidebar */
.sidebar{
    width:220px;
    background:#1e293b;
    color:white;
    min-height:500px;
    padding-top:20px;
}

.sidebar ul{
    list-style:none;
}

.sidebar li{
    padding:15px 20px;
    cursor:pointer;
}

.sidebar li:hover{
    background:#334155;
}

/* Main Content */
.content{
    flex:1;
    padding:20px;
}
.slider{
    width:100%;
    height:400px;
    position:relative;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 0 10px rgba(0,0,0,0.3);
    background:#fff;
}

.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 400px;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}
.register{
    margin-top:30px;
    text-align:center;
}

.register button{
    background:#0d6efd;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

.register button:hover{
    background:#0b5ed7;
}

/* Footer */
footer{
    background:#222;
    color:white;
    text-align:center;
    padding:15px;
    margin-top:20px;
}
/* Registration Form */

.form-container{
    width:500px;
    margin:40px auto;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,.2);
}

.form-container h1{
    text-align:center;
    margin-bottom:20px;
}

form{
    display:flex;
    flex-direction:column;
}

label{
    margin-top:10px;
    font-weight:bold;
}

input,select{
    padding:12px;
    margin-top:5px;
    border:1px solid #ccc;
    border-radius:5px;
}

button{
    margin-top:20px;
    padding:12px;
    background:#0d6efd;
    color:white;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    background:#084298;
}