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

/* Background Consistency */
body {
    background-color: #0D0D0D; /* Same as main page */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Signup Container */
.signup-container {
    background: #1A1A1A; /* Dark theme to match main page */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 255, 200, 0.2);
    text-align: center;
    width: 400px;
}

/* Heading */
.signup-container h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

/* Input Fields */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #5CC5A7; /* Green accent */
    border-radius: 8px;
    font-size: 16px;
    background-color: #262626;
    color: white;
    outline: none;
}

input::placeholder {
    color: #aaa;
}

input:focus {
    border-color: #00FFC8;
}

/* Signup Button (Matches Main Page CTA) */
button {
    width: 100%;
    padding: 14px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

button:hover {
    background: #5CC5A7;
    color: white;
}

/* Login Link */
p {
    margin-top: 15px;
    font-size: 14px;
    color: #ccc;
}

p a {
    color: #5CC5A7;
    font-weight: bold;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}
