/* Admin Page Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-box {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    color: #5BC0EB;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.notice {
    background: #fff8e1;
    border: 1px solid #FFC914;
    border-radius: 8px;
    padding: 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.back {
    display: inline-block;
    margin-top: 25px;
    color: #5BC0EB;
    text-decoration: none;
    font-size: 0.9rem;
}

.back:hover {
    text-decoration: underline;
}
