/* Global Styles */
body {
    background: radial-gradient(circle, #121212, #0a0a0a);
    color: #ffffff;
    font-family: "Merriweather Sans", sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Containers */
.container {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    width: 350px;
    text-align: center;
}

h2, h1 {
    font-family: "Merriweather Sans", sans-serif;

    margin-bottom: 20px;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

/* Labels and Inputs */
label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: bold;
    color: #cccccc;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background: #333333;
    color: #ffffff;
    font-size: 1em;
    text-align: center;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    outline: none;
    transition: all 0.2s;
}

input:focus {
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

/* Buttons */
button {
    padding: 12px 20px;
    background: linear-gradient(90deg, #00ffff, #007373);
    color: #ffffff;
    font-weight: bold;
    font-size: 1em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 255, 255, 0.3);
    transition: all 0.3s;
    outline: none;
    font-family: "Merriweather Sans", sans-serif;

}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 255, 255, 0.5);
}

/* Error Message */
#error-message {
    font-family: "Merriweather Sans", sans-serif;

    color: #ff4d4d;
    margin-top: -10px;
    margin-bottom: 20px;
    font-size: 0.9em;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.7);
}

/* Error Container */
.error-container {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    width: 400px;
    text-align: center;
}

.error-container h1 {
    margin-bottom: 20px;
    color: #ff4d4d;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.error-container p {
    font-size: 1em;
    margin-bottom: 30px;
    color: #cccccc;
}

/* Footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.logo {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
}
/* Error message animations */
.animated-message {
    font-size: 1.1em;
    color: red;
    font-weight: bold;
    text-align: center;
}

.shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}






