.form {
    padding: 40px;
    background: #FFFFFF;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    min-width: 260px;
}

.action-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* height: 100vh; */
}

.action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
}

.action-wrapper {
    display: flex;
    justify-content: center;
}

.action-message {
    color: #757575;
}

.required-indicator{ 
    color: #757575;
}

.action-message-highlight {
    color: #625BF7;
    font-weight: 700;
    font-size: 17px;
    line-height: 17px;
}

.action-error-message {
    color: #F7625B;
    font-weight: 500;
    font-size: 15px;
    line-height: 17px;
}

.action-title {
    color: #333333;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

.field-name {
    color: #333333;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
}

.field-input-holder {
    margin-top: 3px;
    margin-bottom: 10px;
}

.field-input {
    border: 1px solid #DEDEDE;
    border-radius: 6px;
    width: 100%;
    padding: 8px 12px;
    box-sizing: border-box;
}

.action-button-holder {
    padding-top: 10px;
}


.action-sub-action {
    display: flex;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
}

.action-button {
    width: 100%;
    padding: 8px 12px;
    background: linear-gradient(180deg, #625BF7 0%, #463EEA 100%);
    border-radius: 6px;
    color: white;

    font-weight: 800;
    font-size: 16px;
    line-height: 18px;

    text-transform: uppercase;

    color: #FFFFFF;
}

.action-alternative-action {
    padding-top: 30px;
}

/* for homepage */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.warning {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin-bottom: 20px;
}

.success {
    background-color: #d7f8da;
    color: #1c7224;
    padding: 10px;
    border: 1px solid #c6f5cb;
    border-radius: 5px;
    margin-bottom: 20px;
}

.profile-info {
    margin-bottom: 20px;
}

.thank-you {
    font-size: 1.2em;
    font-weight: bold;
    color: #28a745;
}

.edit-profile-btn {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.services-list {
    margin-bottom: 20px;
}

.services-list ul {
    list-style-type: none;
    padding: 0;
}

.services-list li {
    margin-bottom: 5px;
}

.form-link {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    border: 0;
    background: bottom;
}