/* styles.css */
.container-form {
    background-color: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.whitelist-form {
    margin-top: 120px;
}

h1 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

#feedback {
    font-size: 1rem;
    margin-top: 10px;
}

.right-box {
    background-color: #212529;
    padding: 20px;
}

.about-item h4 {
    font-size: 20px;
    text-transform: uppercase;

}

.about-item-whitelist {
    background-color: #163947;
    margin-bottom: 10px;
    height: 250px;
    border-radius: 10px;

}
