* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0d0d0d;
    font-family: 'Bebas Neue', Arial, sans-serif;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(20, 20, 20);
    border: 1px solid rgb(40, 40, 40);
    padding: 40px;
    border-radius: 4px;
}

input[type="text"] {
    width: 300px;
    padding: 10px 16px;
    font-size: 16px;
    background-color: rgb(30, 30, 30);
    border: 1px solid rgb(40, 40, 40);
    color: #fff;
    border-radius: 4px;
    outline: none;
    font-family: 'Bebas Neue', Arial, sans-serif;
}

input[type="text"]::placeholder {
    color: rgb(100, 100, 100);
}

input[type="text"]:focus {
    border-color: rgb(80, 80, 80);
}

.btn {
    margin-top: 16px;
    width: 300px;
    padding: 10px 16px;
    font-size: 16px;
    background-color: rgb(116, 199, 32);
    border: none;
    color: #141414;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Bebas Neue', Arial, sans-serif;
    letter-spacing: 0.4px;
}

.btn:hover {
    opacity: 0.9;
}
