/* Reset some default browser styles */
body, h1, form, input, textarea, button {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    box-sizing: border-box;
}

.TextNova {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

body {
    background-color: #080808;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #ccc;
}

.container {
    background-color: #181818;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    width: 100%;
    max-width: 500px;
    border: 2px solid #474747
}

header h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ddd;
}

form label {
    display: block;
    margin-bottom: 5px;
    color: #ddd;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #888;
    border-radius: 30px;
    outline: none;
    transition: border-color 0.3s;
}

form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: transparent;
    color: #ddd;
    font-family: 'JetBrains Mono';
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #cccccc;
    color: #1b1b1b;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    border: 0.5 solid #4d4d4d;
    transition: background-color 0.3s, color 0.3s;
}

form button:hover {
    color: #242424;
    background-color: #acacac;
}

.input-container {
    position: relative;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #888;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.inputEmail {
    position: absolute;
    left: 10px;
    top: 40%;
    transform: translateY(-60%);
    background: #181818;
    border-radius: 300px;
    padding: 0 5px;
    color: #858585;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

input:focus + label,
input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: #ccc;

}

a:link, a:visited, a:hover {
    color: #ccc;
    text-decoration: underline;
}

.banner {
    background-color: #ff4d4d;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.dismiss-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.dismiss-button:hover {
    color: #000;
}