body {
    background: #171918;
    color: white;
    font-family: Arial;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0px;
}

.box {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #D72638;
}

.box form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-direction: column;
}

input {
    color: black;
    border: none;
    outline: none;
    padding: 5px 10px;
    border-radius: 6px;
}

button {
    padding: 10px;
    border-radius: 6px;
    border: none;
    background-color: #2E2E2E;
    color: #FFFFFF;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.error {
    color: #D72638;
    margin-top: 10px;
}

textarea {
    border-radius: 20px;
    outline: none;
    border: none;
}

.download-btn {
    background: linear-gradient(270deg, #D72638 0%, #a51422 100%);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.active-site {
    flex-direction: column;
    gap: 20px;
}