:root {
    --dark-red: #5e0307;
    --light-red: #f5252f;
    --background-green: #279e03;
    --purple: #bf047e;
    --light-purple: #f799d6;
    --pink-background: #fae6f3;
    --purple-gray: #5e4455;
    --white: white;
    --black: black;
    --background-light: #f4f4f4;
  
}


.section-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%; /* Adjust as needed */
    /* max-width: 1400px; */
}

section {
    width: 100%;
}
.section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 30%; /* Adjust as needed */
    min-width: fit-content; /* Adjust as needed */
    max-width: 350px; 
}

.section h2 {
    background-color: #e91e63; /* Pink color */
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-top: 10px;
    white-space: nowrap;
}

.section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.section li {
    text-align: left;
    padding: 5px 0;
    white-space: nowrap;
}

.section .price {
    font-weight: bold;
    margin-bottom: 20px;
}

.register-button {
    background-color: #4caf50; /* Green color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.register-button:hover {
    background-color: #45a049;
}


/* registration section  */

.registration-section {
    background-color: var(--white);
    padding: 20px 20px 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-wrapper {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 4px; */
    width: 80%;
    max-width: 400px;
}


.form-input {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 5px 0 10px 0;
    font-size: 16px;
    min-width: 300px;
    max-width: 300px;
}

.svg-checkmark-green {
    margin-top: 8px;
}

.payment-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-sizing: border-box;
    min-width: fit-content;
} 

.width-100 {
    width: 100%;
}

.nav-left {
    display: flex;
    flex-wrap: wrap;
}
/* .nav-right {
    display: none;
} */

#no-account {
    font-size: 14px;
    padding-left: 10px;
    padding-top: 5px;
}

#username-constraints{
    font-size: 14px;
    /* padding: 0 5px 5px 10px ; */
}

a#signup-redirect {
    color: var(--dark-red);
    cursor: pointer;
}

#password-constraints {
    font-size: 14px;
    /* padding: 0 5px 5px 10px ; */
}

svg#eye-closed, svg#eye-open {
    width: 24px;
    height: 20px;
    margin-bottom: 5px;
    position: relative;
    left: -35px;
}

#password-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
}

#registration-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 300px;
}

.red-border-button {
    display: block;
    width: 100px;
    text-align: center;
    border: 1px solid var(--dark-red);
    border-radius: 5px;
    color: var(--dark-red);
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
}

.red-button {
    width: 140px;
    border: 1px solid var(--dark-red);
    border-radius: 5px;
    color: var(--white);
    background: var(--dark-red);
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
}

.red-button:hover {
    background: var(--light-red);
    border: none;
}

.red-border-button:hover {
    color: var(--white);
    background-color: var(--dark-red);
    
}

.red-border-button:hover ~ .red-button {
        border: 1px solid var(--dark-red);
        border-radius: 5px;
        color: var(--dark-red);
        background: white;
}

.registration-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;

}

.registration-title > h2 {
    color: var(--dark-red);
}

.errorlist {
    color: #d6030e;
    padding-bottom: 10px;
    /* font-size: 12px; */
}
