body,html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

nav {
    background-color: #bfbbe9;
    color: white;
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
}
nav ul li a:hover {
    color: #ffcc00;
    text-decoration: underline;
}
nav ul li a:visited {
    color: white;
}

nav ul li a:active {
    color: #ffcc00;
}

nav ul li a:focus {
    outline: none;
    color: #ffcc00;
}

h1 {
    text-align: center;
    margin-top: 20px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, #ffcc00, #ff9900);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: color 0.3s ease;
}

h1:hover {
    color: #ff9900;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
}


.container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.container h2 {
    text-align: center;
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #262627;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 14px;
}

footer a {
    text-decoration: none;
    color: white;
}

footer a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

footer a:visited {
    color: white;
}

button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

button:active {
    background-color: #3e8e41;
}

.container form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.container form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
    text-align: left;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.container form label:hover {
    color: #ffcc00;
}

.container form input[type="text"],
.container form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.container form input[type="text"]:focus,
.container form input[type="password"]:focus {
    border-color: #4CAF50;
    outline: none;
}

.container form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.container form button:hover {
    background-color: #45a049;
}

.container form button:active {
    background-color: #3e8e41;
}

.container form p {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.container form p a {
    text-decoration: none;
    color: #4CAF50;
    transition: color 0.3s ease;
}

.container form p a:hover {
    color: #45a049;
}

.container form p a:visited {
    color: #4CAF50;
}   

.container form button a {
    color: white;
    text-decoration: none;
}

.container form button a:hover {
    color: #ffcc00;
    text-decoration: underline;
}   

.container form button a:visited {
    color: white;
}

.container form button a:active {
    color: #ffcc00;
}

.container form button a:focus {
    outline: none;
    color: #ffcc00;
}

.container form button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.container form button:hover {
    background-color: #45a049;
}

.container form button:active {
    background-color: #3e8e41;
}

