﻿html {
    background-color: #232323 !important;
}
* {
    font-family: 'Athiti' !important;
}
.section-container {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #232323 !important;
    min-height: 100vh !important;
}
.section-wrapper {
    margin: 0 auto;
    max-width: 480px;
    padding: 0 10px;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh !important;
}

.bg-radius-white {
    border-radius: 20px;
    background-color: #ffffff;
    padding: 20px;
}
.bg-radius-purple {
    border-radius: 20px;
    background-color: #cc00b0;
    padding: 20px;
}

.btn-register {
    padding: 10px;
    color: #ffffff;
    border-radius: 30px;
    background: rgb(255,105,234);
    background: -moz-linear-gradient(90deg, rgba(255,105,234,1) 20%, rgba(203,82,250,1) 80%);
    background: -webkit-linear-gradient(90deg, rgba(255,105,234,1) 20%, rgba(203,82,250,1) 80%);
    background: linear-gradient(90deg, rgba(255,105,234,1) 20%, rgba(203,82,250,1) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff69ea",endColorstr="#cb52fa",GradientType=1);
}

/********** Custom Bootstrap   **********/
.card {
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 20px;
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #ffffff;
    /*border-bottom: 1px solid #232323;*/
}
.card-header:first-child {
    border-radius: 20px 20px 0 0;
}
.card-body {
    background-color: #cc00b0;
    border-radius: 0 0 20px 20px;
}

.form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0.375rem 0.75rem;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 15px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-select {
    display: inline-block;
    width: 100% !important;
    height: 50px;
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
    border: 1px solid #ced4da;
    border-radius: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef;
}

.custom-select::-ms-expand {
    display: none;
}

.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
}


/********** End Boostrap **********/

/********** Custom Checkbox **********/
.container-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked ~ .checkmark {
    background-color: gold;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
