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

/* Body Styling */
body {
    background: linear-gradient(to bottom, #444, #222);
    color: #f5f5f5;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

/* HEADER */
#header {
    background: url('../../images/hacking-1685092_640.jpg') center/cover no-repeat;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

#header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

/* Navigation Menu */
ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

li {
    list-style: none;
}

li a {
    display: block;
    padding: 12px 20px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    border-radius: 30px;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

li a:hover {
    background: linear-gradient(45deg, #0056b3, #004494);
    transform: translateY(-3px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
}

/* Call-to-Action Buttons */
#singIN__, #rgst____, #registerFake {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

#singIN__:hover, #rgst____:hover, #registerFake:hover {
    background: #218838;
    transform: scale(1.05);
}

/* Footer */
#footer {
    margin-top: 50px;
    padding: 20px;
    background: #111;
    font-size: 14px;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    ul {
        flex-direction: column;
        padding: 5px;
    }

    li a {
        width: 90%;
        text-align: center;
    }

    #header h1 {
        font-size: 2rem;
    }
}

/* Form Container */
form {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

/* Label Styling */
form label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #f5f5f5;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* Input Fields */
form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

/* Input Focus Effect */
form input:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

/* Submit Button */
form input[type="submit"] {
    background: linear-gradient(45deg, #007BFF, #0056b3);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

form input[type="submit"]:hover {
    background: linear-gradient(45deg, #0056b3, #004494);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 600px) {
    form {
        width: 90%;
    }
}
/* Apply the same style as <ul><li>, with enhanced typography */
button, input[type="submit"] {
    display: block;
    width: 130px;
    padding: 15px 0;
    text-align: center;
    font-size: 1.1em; /* Slightly larger text */
    font-weight: bold; /* Make text stand out */
    letter-spacing: 1px; /* Slightly wider spacing */
    text-transform: uppercase; /* Capitalize for impact */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    background: #FFFFFF;
    border-radius: 50px;
    border: 4px solid rgba(0,0,0,0);
    color: #FF0000; /* Changed text color to red */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin: 10px auto; /* Center buttons */
}

/* Hover Effect */
button:hover, input[type="submit"]:hover {
    background: #AAAAAA;
    border: 4px outset #999999;
    color: #CC0000; /* Slightly darker red on hover */
    text-shadow: 1px 1px 5px rgba(255, 0, 0, 0.3); /* Glowing red effect */
}

/* Active (Pressed) Effect */
button:active, input[type="submit"]:active {
    background: #888888;
    border: 4px outset #777777;
    color: #990000; /* Even darker red when pressed */
    text-shadow: none; /* Remove glow when pressed */
}
