.container {
    background: white;
    max-width: 600px;
    margin: 60px auto;
    border-radius: 10px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    overflow: hidden;
}

.header {
    border-bottom: 1px solid #f9f7fe;
    padding: 20px 30px;
}

#instructions {
    background-color: #f9f7fe;
    border: none;
    outline: none;
    color: rgba(39, 33, 66, 0.8);
    font-size: 16px;
    padding: 20px;
    width: 75%;
    border-radius: 6px;
    box-shadow: 0 30px 50px rgba(49, 14, 130, 0.452);
    font-family: "Roboto", sans-serif;
}

#submit-button {
    margin-left: 5px;
    font-size: 16px;
    background-color: #885df1;
    color: white;
    border: none;
    padding: 20px;
    line-height: 1;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    white-space: nowrap;
}

#submit-button:hover {
    background-color: #6f3fd4;
}

.footer {
    border-top: 1px solid #f9f7fe;
    text-align: center;
    padding: 15px 30px;
    box-shadow: 0 30px 50px rgba(49, 14, 130, 0.452);
    color: rgba(39, 33, 66, 0.4);
    font-size: 13px;
}

#submit-button {
    width: 100%;
    margin-left: 0;}