.settings-page {
    margin: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}
@media (max-width: 767px) {
    .settings-page {
        grid-template-columns: minmax(100px, 1fr);
        margin: 0 10px;
        gap: 10px;
    }
}
.site-control {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
.site-control h2 {
    margin: 0 0 10px;
}
.site-control > p {
    margin: 0 0 20px;
    opacity: 0.5;
    font-size: 15px;
}
.site-control > div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-control div p {
    opacity: 0.5;
    margin-top: 10px 0 0;
    font-size: 12px;
}
.site-control textarea {
    border: 1px solid #ccc;
    resize: none;
    padding: 10px;
    border-radius: 10px;
    display: block;
    width: 100%;
    min-height: 150px;
}

.general-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
.general-info h2 {
    margin: 10px 0 10px;
}
.general-info p {
    opacity: 0.5;
    margin: 10px 0 26px;
}
.general-info div label {
    display: block;
    opacity: 0.5;
    margin: 10px 0;
    font-size: 14px;
}
.general-info div:last-child {
    margin-top: 15px;
}
.general-info div input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 14px;
}
.general-info div:last-child input {
    width: 85%;
    background-color: #f0f4f8;
    color: #bbb;
    cursor: no-drop;
}
.general-info div a {
    color: var(--blue-color);
    cursor: pointer;
    margin-left: 6px;
}
/* End General Info */


/* Start Security Info */
.security-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
.security-info h2 {
    margin: 0 0 24px;
}
.security-info p {
    opacity: .5;
    margin: -10px 0 0px;
    font-size: 14px;
}
.security-info > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.security-info > div:not(:nth-child(3)) {
    border-top: 1px solid #ccc;
}
.security-info div:nth-child(3) a {
    margin-top: 32px;
    color: white;
    background-color: var(--blue-color);
    padding: 8px 10px;
    border-radius: 10px;
    height: fit-content;
    transition: .3s;
}
.security-info div:last-child a {
    color: black;
    background-color: #eee;
    padding: 8px 10px;
    border-radius: 10px;
    height: fit-content;
    margin-top: 26px;
    transition: .3s;
}
.security-info div:nth-child(3) a:hover {
    background-color: var(--blue-alt-color);
}
/* End Security Info */

/* Start Social Info */
.social-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
.social-info h2 {
    margin: 0 0 20px;
}
.social-info p {
    opacity: 0.5;
    margin: 20px 0;
}
.social-info div {
    display: flex;
    margin-bottom: 12px;
}
.social-info > div:focus-within i{
    color: black
}
.social-info input {
    width: 100%;
    height: 40px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 0 10px 10px 0;
    background-color: #eee;
    font-size: 13px;
    border: 1px solid #ddd;
}
.social-info i {
    width: 40px;
    height: 40px;
    background-color: #eee;
    border-radius: 10px 0 0 10px;
    border: 1px solid #ddd;
    border-right: none;
    color: var(--grey-color);
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* End Social Info */

/* Start Widgets Control */
.widgets-control {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
.widgets-control h2 {
    margin: 0 0 20px;
}
.widgets-control p {
    opacity: .5;
}
.widgets-control div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.widgets-control div label {
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}
.widgets-control div label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 2px solid var(--grey-color);
    border-radius: 4px;
}
.widgets-control div label:hover::before {
    border-color: var(--blue-alt-color);
}
.widgets-control div label::after {
    font-family: var(--fa-style-family-classic);
    font-weight: 900;
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--blue-color);
    color: white;
    font-size: 14px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(360deg);
    transition: .3s;
    border-radius: 4px;
}
.widgets-control div input:checked + label::after {
    transform: scale(1);
}
.widgets-control div input {
    --webkit-apperance: none;
    appearance: none;
}
/* End Widgets Control */

/* Start Backup Manager */
.backup-manager {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
.backup-manager h2 {
    margin: 0 0 20px;
}
.backup-manager p {
    opacity: .5;
    margin: 0 0 20px;
    font-size: 15px;
}
.backup-manager .date {
    display: flex;
    align-items: center;
    margin-bottom: 24px;    
}
.backup-manager input {
    -webkit-appearance: none;
    appearance: none;
}
.backup-manager .date label {
    cursor: pointer;
    padding-left: 30px;
    position: relative;
}
.backup-manager .date label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -11px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--grey-color);
    border-radius: 50%;
}
.backup-manager .date label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 2px;
    width: 14px;
    height: 14px;
    background: var(--blue-color);
    border-radius: 50%;
    transition: 0.3s;
    transform: scale(0);
}
.backup-manager .date input[type="radio"]:checked + label::before {
    border-color: var(--blue-color);
}
.backup-manager .date input[type="radio"]:checked + label::after {
    transform: scale(1);
}
.backup-manager .date:nth-of-type(3) {
    border-bottom: 1px solid #eee;
    padding-bottom: 22px;
}
.backup-manager .servers {
    display: flex;
    align-items: center;
    text-align: center;
}
.backup-manager .servers .server {
    margin-bottom: 15px;
    border-radius: 10px;
    width: 100%;
    position: relative;
    border: 2px solid #eee;
}
.backup-manager .servers .server label {
    display: block;
    cursor: pointer;
    margin: 15px;
}
.backup-manager .servers .server label i {
    display: block;
    margin-bottom: 10px;
}
.backup-manager .servers input:checked + .server {
    border-color: var(--blue-color);
    color: var(--blue-color);
}
@media (max-width: 767px) {
    .backup-manager  .servers {
        flex-wrap: wrap;
    }
}