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

/* Page Style */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f4f8;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: #4a90e2;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s;
    background: linear-gradient(145deg, #357abd, #4a90e2);
    box-shadow: 3px 3px 6px #2f5b89, -3px -3px 6px #6ba9f0;
}

.navbar a:hover {
    background: #357abd;
}

/* Login Panel Style */
.login-panel {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow: 8px 8px 16px #c9c9c9, -8px -8px 16px #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

/* Logo Inside Login Panel */
.logo-container {
    margin-bottom: 15px;
}

.logo-container img {
    max-height: 100px;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}


.logo-container img:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.5);
}

.login-panel h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.login-panel input[type="text"],
.login-panel input[type="email"],
.login-panel input[type="password"],
.login-panel button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

.login-panel input[type="text"],
.login-panel input[type="email"],
.login-panel input[type="password"] {
    background: #f5f6fa;
    box-shadow: inset 6px 6px 12px #d1d1d1, inset -6px -6px 12px #ffffff;
}

.login-panel button {
    background: #4a90e2;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.login-panel button:hover {
    background: #357abd;
}

.login-panel .links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}

.login-panel .links a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s;
}

.login-panel .links a:hover {
    color: #357abd;
}

/* Alert Box Style */
.alert-box {
    display: flex;
    align-items: center;
    background-color: #ffeded;
    color: #d9534f;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: inset 3px 3px 6px #e1b1b1, inset -3px -3px 6px #fff;
}

.alert-box i {
    font-size: 18px;
    margin-right: 8px;
}
.success-box {
    display: flex;
    align-items: center;
    background-color: #e3f9e9;
    color: #0e9c09;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: inset 3px 3px 6px #e1b1b1, inset -3px -3px 6px #fff;
}

/* Banner Style */
.banner {
    width: 468px;
    height: 60px;
    margin: 10px auto;
    background-color: #e2e2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 8px #c9c9c9, -4px -4px 8px #ffffff;
    border-radius: 8px;
    font-weight: bold;
    color: #666;
}

/* Footer Style */
.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.footer a {
    color: #4a90e2;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
}

.footer a:hover {
    color: #357abd;
}

/* Scrollable on Small Screens */
@media (max-width: 600px) {
    body {
        overflow-y: auto;
        padding: 20px;
    }

    .banner {
        width: 100%;
    }
}
