.step_one_container {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url(../static/images/bg_step_one.png) center no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step_one_body {
    position: relative;
    background-color: #fff;
    padding: 40px;
}

.step_one_title {
    margin-top: 15px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
}

.step_one_form {
    margin-top: 20px;
}

.input_body {
    margin-top: 20px;
}

.step_one_form label {
    color: #5E5E5E;
    margin-bottom: 5px;
}

.step_one_form input,
.profile_row input {
    width: 100%;
    padding: 13px 15px;
    background-color: #F0EDEA;
    border: none;
}

.step_one_form input:focus-visible {
    box-sizing: border-box;
    outline: none;
}

.step_submit_button {
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    padding: 13px 60px;
    border: 2px solid transparent;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #FB3453;
    color: #FFFFFF;
    font-size: 16px;
}

.step_submit_button:hover {
    color: #FB3453;
    background-color: #FFFFFF;
    border: 2px solid #FB3453;
}

.step_arrow {
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 40px;
}

.step_arrow:hover svg {
    fill: #FB3453;
}

.step_text {
    margin-top: 10px;
    text-align: center;
    color: #5E5E5E;
    line-height: 24px;
    max-width: 500px;
}

.resend_mail {
    margin-top: 30px;
    font-size: 12px;
    color: #5E5E5E;
}

.resend_mail_link {
    cursor: pointer;
    color: #FB3453;
}

.error {
    margin-top: 5px;
    color: red;
    font-size: 12px;
    max-width: 500px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.error svg {
    flex: 0 0 auto;
}

.forgot_password {
    margin-top: 10px;
    text-align: right;
}
.forgot_password a {
    font-size: 12px;
    color: #FB3453;
}

.profile_info {
    margin: 0 auto;
    max-width: 700px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    border: 1px solid #D3D3D3;
}

.profile_row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    font-size: 16px;
}

.row_name {
    flex: 0 0 25%;
    color: #5E5E5E;
}

.row_value {
    flex: 1 1 auto;
    color: #1B1B1B;
}

#form-container {
    display: none;
}

.delete_button {
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    padding: 13px 60px;
    border: none;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #FFFFFF;
    color: #5E5E5E;
    font-size: 16px;
}

.delete_button:hover {
    color: #1B1B1B;
}

.profile_buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.profile_buttons button {
    position: initial;
    transform: none;
}

.step_cancel_button {
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    padding: 13px 60px;
    border: 2px solid #FB3453;
    background-color: #FFFFFF;
    color: #FB3453;
    font-size: 16px;
}

.step_cancel_button:hover {
    color: #FFFFFF;
    background-color: #FB3453;
    border: 2px solid #FB3453;
}