.plan_option .button.submit.diamond_invitation {
    background: white;
    color: #212b44;
    border: 1px solid #212b44;
    font-size: 13px;
    padding: 10px;
}


body.locked {
    overflow: hidden;
}


#mask {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

#main_form {
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 0;
    background: #212b44;
    border-radius: 12px;
    color: rgba(255, 255, 255, 1);
    transition: all 250ms ease;
    box-shadow: 8px 8px 1px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

body:not(.mobile) #main_form {
    min-width: 600px;
}

#main_form h2 {
    font-size: 20px;
    background: #2bc9c0;
    margin: 0 0 20px 0;
    padding: 20px;
}


#main_form.lost_focus {
    opacity: 0;
    transform: translateY(200px);
}

#main_form .input_field {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 10px 0 30px;
}

#main_form form {
    padding: 20px;
}

#main_form .label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

#main_form input {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    color: white;
    padding: 5px;
    font-size: 16px;
}

#main_form .button_bar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#main_form input[type=submit] {
    margin: 0px auto;
    border-radius: 30px;
    padding: 7px;
    color: white;
    box-sizing: border-box;
    cursor: pointer;
    font: bold 16px open sans;
    background: #e62640;
    transition: all 500ms ease;
    text-transform: uppercase;
    max-width: 200px;
    width: 200px;
}