
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    background: #000;
    color: white;
    overflow: hidden;
}

.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.5);
    z-index: 1;
    width: 410px;
    text-align: center;
    animation: fadeIn 1.2s ease;
}

.animated-logo {
    height: 70px;
    animation: float 3s ease-in-out infinite;
}

.system-name h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 10px;
    color: #00f0ff;
    margin-top: 15px;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
 
.slogan {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 3px;
    color: #ccc;
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #00aaff;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: white;
    color: #00aaff;
}

.forgot {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 15px;
    color: #aaa;
    cursor: pointer;
}

.forgot a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot a:hover {
    color: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
