.getstarted-modal .modal-header {
    display: flex;
    border: 0;
    flex-direction: column-reverse;
}

.getstarted-modal .modal-content {
    border: 0;
    padding: 20px;
}

.getstarted-modal .modal-header button {
    border: 1px solid #eee;
    background-color: transparent;
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 20px;
}

.getstarted-modal .modal-header button:hover {
    background-color: #ED1C24;
    color: #fff;
}

.get-started-form {
    display: flex;
    flex-direction: column;
}

.get-started-form input {
    width: 100%;
    padding: 20px;
    color: #252525;
    background-color: #f0f0f0;
    border: 0;
    border-radius: 10px;
    margin-bottom: 20px
}

.get-started-form input:focus {
    outline: none;
}

.get-started-form button {
    background-color: var(--primary-color);
    border: 0;
    padding: 20px;
    border-radius: 10px;
    color: white;
}