body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #ececec;
    color: #000;
    text-align: center;
    padding: 10px;
}

section {
    text-align: center;
    padding: 20px;
}

.product {
    width: 80%;
    margin: 10px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.big-checkbox {
    position: relative;
    display: inline-block;
    width: 70px; /* Adjust the width */
    height: 70px; /* Adjust the height */
}

.big-checkbox input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.big-checkbox label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* transition: opacity 0.1s; */
    background-image: url("../img/checkbox-checked-5.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    opacity: 25%;
}

.product.checked .big-checkbox input+label {
    opacity: 100%;
    filter: invert(79%) sepia(40%) saturate(6018%) hue-rotate(62deg) brightness(100%) contrast(117%);
}

.product.checked {
    border: 4px solid #000;
}

#domain {
    min-width: 400px;
    min-height: 30px;
    font-size: 17px;
}

#storage-product {
    position: relative;
}

section.why-us li {
    list-style-type: none;
}

section.why-us {
    margin-top: 60px;
}

/* ORDER page */
#order section {
    width: 40%;
    margin: 10px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

#order .input-group-text {
    min-width: 200px;
}

#order section h2 {
    display: block;
    margin-bottom: 30px;
}

#order section .final-error {
    padding: 40px;
    color: #ff0000;
    font-weight: bold;
    font-size: 24px;
}

#order-success header {
    background-color: #caffbf;
}

#order-success section > div {
    padding: 40px;
}

#layout {
    overflow: hidden;
    display: flex;
    width: 100%;
}

#layout, body, html {
    height: 100%;
}

.task-login #layout-content {
    text-align: center;
}
#layout-content {
    display: flex;
    flex: 6;
    flex-direction: column;
    width: 100%;
}
#layout-content, #layout-list, #layout-sidebar, #layout > div > .footer {
    background-color: #fff;
}

.layout-table {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.layout-table div.table-row {
    display: table-row;
    width: auto;
    clear: both;
    padding-bottom: 20px;
}

#login-submit {
    color: #fff;
    background: #37beff;
    background-color: rgb(55, 190, 255, 0.8);
    border-color: #37beff;
    text-transform: uppercase !important;
    width: 100% !important;
    padding: .5rem 1rem;
    font-family: Roboto, sans-serif;
    font-size: 17.5px;
    line-height: 1.5;
    border-radius: .3rem;
    height: 42.25px;
    -webkit-transition: background-color 1s;
    -moz-transition: background-color 1s;
    -o-transition: background-color 1s;
    transition: background-color 1s;
}

#login-submit:hover {
    cursor: pointer;
    background-color: rgba(55, 190, 255, 1);
}

.support-link {
    text-decoration: none;
}

.form-group {
    margin-bottom: .5rem;
}

#login .formbuttons {
    margin-bottom: 3rem;
}

#login-content {
    width: 400px;
    display: block;
}

#select-app-content {
    display: none;
}

.select-app-link span {
    clear: both;
    display: block;
}

.select-app-link a:hover {
    cursor: pointer !important;
}

.select-app-link i {
    font-size: 70px;
    display: inline-block;
}

#select-app-content .select-app-link {
    /*color: #37BEFF;*/
}

.layout-table .table-cell {
    float: left;
    padding-bottom: 30px;
    margin: 30px;
}

#order #new-domain-checkbox {
    margin-left: 10px;
}

#order .new-domain-wrapper {
    opacity: 100%;
}

#order .new-domain-wrapper.readonly {
    opacity: 30%;
}

.username-hint, .password-hint {
    opacity: 40%;
    font-size: 12px;
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 5px;
}