body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f6f8;
}

/* HEADER */
.header {
    background: #2da7ff;
    padding: 30px 20px 80px;
    color: #fff;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.bell {
    font-size: 22px;
}

/* MENU ICON GRID */
.menu {
    margin-top: -50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
    padding: 10px 20px;
}

.item {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.icon {
    font-size: 30px;
    color: #3d9fe0;
    margin-bottom: 5px;
}

.item p {
    font-size: 12px;
}

/* JADWAL CARD */
.title {
    padding: 15px 20px;
    margin: 0;
}

.card {
    background: #4bc2ff;
    margin: 0 20px;
    border-radius: 20px;
    position: relative;
    color: white;
    padding-bottom: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 15px;
    opacity: 0.9;
}

.school-img {
    width: 30%;
    border-radius: 13px;
}

.overlay {
    position: absolute;
    bottom: 15px;
    left: 20px;
}

.overlay h1 {
    margin: 0;
    font-size: 28px;
}

.overlay p {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

/* NAVBAR */
.navbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

.nav-item {
    text-align: center;
    color: #777;
}

.nav-item i {
    font-size: 24px;
}

.nav-item.active {
    color: #2da7ff;
}

.nav-item p {
    margin: 2px 0 0;
    font-size: 12px;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background:#eef3f8;
}

.header {
    width:100%;
    padding:35px 0;
    background: linear-gradient(135deg, #1ea2ff, #4fc3ff);
    color:white;
    text-align:center;
    font-size:22px;
    font-weight:600;
}

.container{
    max-width:900px;
    margin:40px auto;
    padding:20px;
}

.card{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.07);
    text-align:center;
}

.card img{
    width:65px;
    margin-bottom:18px;
}

.card h2{
    font-size:22px;
    color:#333;
}

.card p{
    margin-top:15px;
    line-height:1.6;
    color:#666;
}

/* Responsive */
@media(max-width:768px){
    .card{
        padding:25px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #e3f2fd;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    background: #fff;
    width: 360px;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    text-align: center;
}

.header-img img {
    width: 100%;
    height: auto;
}

h2 {
    margin-top: 10px;
    color: #0d47a1;
    font-weight: bold;
}

.subtitle {
    color: #666;
    margin-bottom: 18px;
}

.role-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.role {
    flex: 1;
    padding: 10px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
}

.role.active {
    background-color: #2196f3;
    color: white;
}

.role:not(.active) {
    background-color: #ffc107;
    color: black;
}

.login-form .input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.password-wrapper {
    position: relative;
}

.show {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 15px;
    color: #333;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #2196f3;
    color: white;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 15px;
}

.register {
    font-size: 14px;
}

.register a {
    color: #0d47a1;
    font-weight: bold;
    text-decoration: none;
}

