/* Designed By Ali Dinçer */
:root {
    --tema-kirmizi: #e95060;
    --tema-mavi: #007bff;
    --tema-radius: 6px;
    --tema-header-height: 8vh;
}

html {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
}

.body-inner {
    background-repeat: no-repeat;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #F4D03F;
    background-image: linear-gradient(132deg, #15e47b 0%, #16A085 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#svg_form_time {
    height: 15px;
    max-width: 100%;
    width: 100%;
    display: block;
}

#svg_form_time circle,
#svg_form_time rect {
    fill: white;
}

.button {
    background: rgb(237, 40, 70);
    border-radius: 5px;
    padding: 15px 25px;
    display: inline-block;
    margin: 10px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgb(0, 0, 0, 0.5);
    transition: transform .2s;
    border: 0;
    outline: 0;
}

.button:active {
    transform: translateY(5px);
}

.disabled {
    display: none;
}

.form-ali {
    max-width: 500px;
    background: white;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    min-height: 360px;
    min-width: 335px;
}

.form-kapat {
    position: absolute;
    top: 30px;
    right: 35px;
}

section {
    transition: transform .5s cubic-bezier(0.38, 0.61, 0.21, 0.93);
}
.form-floating>label {
    color: var(--bs-gray-600);
  /*   padding: .6rem .5rem;
    font-size: .8rem; */
} 

/* 

.form-floating>.form-control {
    padding: .5rem .5rem;
}

.form-floating>.form-select {
    padding: 0.6rem 2rem 0.2rem 0.5rem;
}

.form-floating>.form-control {
    height: calc(2.5rem + 2px);
    line-height: 1;
}

.form-floating>.form-select {
    height: calc(2.5rem + 2px);
    line-height: 35px;
}

.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    opacity: .65;
    transform: scale(.80) translateY(-.3rem) translateX(.15rem);
}
 
.form-control, .form-select {
    border: 1px solid #eee;
    font-size: .8rem;
}
*/
.form-control:focus, .form-select:focus {
    background-color: #fff;
    border-color: #eee;
    outline: 0;
    box-shadow: 0 0 0.25rem 0.15rem rgb(0 0 0 / 5%);
}

.inputGroup {
    background-color: #fff;
    display: block;
    margin: 10px 0;
    position: relative;
}

.inputGroup label {
    padding: 12px 30px;
    width: 100%;
    display: block;
    text-align: left;
    color: #3c454c;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
}

.inputGroup label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background-color: #5562eb;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.inputGroup label:after {
    width: 32px;
    height: 32px;
    content: '';
    border: 2px solid #d1d7dc;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 2px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}

.inputGroup input:checked~label {
    color: #fff;
}

.inputGroup input:checked~label:before {
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.inputGroup input:checked~label:after {
    background-color: #54e0c7;
    border-color: #54e0c7;
}

.inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}

.form-body {
    min-height: 360px;
}

@media (max-width:992px) {
    .form-kapat{
        top: 10px;
        right: 15px;
    }
    .form-ali{
        margin: 5px;
    }
}

@media (min-width:992px) {

    .form-ali{
        min-width: 500px;
    }
}