* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 90vh;
    background: linear-gradient(135deg, #2c83da9c, #105aa3, #12275f);
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('laut1.jpg.jpeg');
    background-size: cover;
    background-position: center;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    width: 380px;
    padding: 35px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.glass-card h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #ecf0f1;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #ddd;
}

.input-group input {
    width: 100%;
    padding: 14px 45px 14px 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.input-group input::placeholder {
    color: #ccc;
}

.input-group i {
    position: absolute;
    right: 15px;
    top: 42px;
    color: #ccc;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 20px;
}

.remember label {
    margin-left: 5px;
}

.forgot a {
    color: #9bdcff;
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    color: #fff;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.register-link {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.register-link a {
    color: #9bdcff;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    margin-bottom: 10px;
}

.menu-list a {
    color: #ecf0f1;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.menu-list a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Dashboard Styles */
.dashboard-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 30px;
}

.dashboard-header h1 {
    font-size: 36px;
    color: #ecf0f1;
    margin-bottom: 10px;
}

.dashboard-header p {
    font-size: 18px;
    color: #bdc3c7;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    margin: 10px;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

.stat-card h3 {
    font-size: 24px;
    color: #ecf0f1;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    color: #bdc3c7;
}

.nav-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.nav-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    text-decoration: none;
    color: #ecf0f1;
    display: block;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.nav-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.nav-card p {
    font-size: 14px;
    color: #bdc3c7;
}
