body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0a0e24;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
}

.logo-img {
    width: 80px;
    margin-bottom: 20px;
}

.title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    font-size: 1rem;
    display: block;
    margin-bottom: 8px;
}

textarea,
input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1c2239;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

textarea {
    height: 60px;
    resize: none;
}

.btn {
    background-color: #24d363;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #1fb857;
}