body {
    background-color: #ababab; /* Black background */
    color: #fff; /* White text */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.form-container {
    background-color: #787878; /* Dark grey background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* Subtle white shadow */
    width: 100%;
    max-width: 400px; /* Limit the form container's width */
}

form h3 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    color: #fff;
}

form .box {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #222; /* Slightly lighter grey */
    border: 1px solid #333; /* Dark border */
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

form .box::placeholder {
    color: #888; /* Grey placeholder text */
}

form .btn {
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    background-color: #555; /* Medium grey button */
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

form .btn:hover {
    background-color: #222222; /* Lighter grey on hover */
}

form p {
    text-align: center;
    color: #aaa; /* Light grey text */
}

form p a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

form p a:hover {
    text-decoration: underline;
   
}
