.form-content-container{
    width: 40%;
}
.form-contents{
    display: flex;
    align-items: center;
    background-color: var(--theme);
    width: 80%;
    /* width: 30%; */
    padding: 5px;
    border-radius: 12px;
    margin: 10px;
}
.form-contents input{
    width: 60%;
    background-color: var(--bg);
    padding: 6px 10px;
    margin: 6px;
    margin-left: auto;
    color: var(--text-d);
    font-size: 20px;
    border-radius: 6px;

}
.text-form{
    font-size: 20px;
    color: var(--theme-d);
    font-family: fontSB;
    margin: 0 10px;
    margin-right: auto;
}










/* SWITCH */

.switch {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-label {
    padding: 6px 15px;
    display: inline-block;
    background-color: var(--bg);
    color: var(--text-d);
    font-family: fontM;
    font-size: 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.1s;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    user-select: none;
}

.btn-label:hover {
    background-color: var(--theme);
}

input[type="radio"] {
    display: none;
}

.btn-label.checked {
    background-color: var(--theme-d) !important;
    color: var(--text-l) !important;
}

/* 
.btn-label input[type="radio"]:checked  {
    background-color: var(--theme-d) !important;
    color: var(--text-l) !important;
} */



















/* CHECKBOX */

.tickbox-container{
    /* background-color: var(--bg); */
    width: 15%;
    margin: 0 auto;
    border-radius: 12px;
    padding: 10px;

}
.system-tickbox{
    width: 25%;
}
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin: 18px  !important;
    cursor: pointer;
    color: var(--text-d);
    font-family: fontM;
    font-size: 18px;
}

/* Hide the actual checkbox input */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--theme);
    border-radius: 6px;
}

/* When the checkbox is checked, change the background color */
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--theme-d);
}

/* Create the checkmark (the tick symbol) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when the checkbox is checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark as a tick symbol */
.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}


/* File Upload */
#imageUpload {
    font-size: 16px;
    cursor: pointer;
}

/* Change the cursor on hover */
#imageUpload:hover {
    background-color: var(--theme-d);
    color: var(--text-l);
}


/* Form Upload Buttons */
.form-button{
    display: block;
    margin: 40px auto;
    margin-left: auto;

}
.cancel-btn{
    /* margin-left: 30% !important; */
    margin-left: 20px !important;
}
