﻿body {
   background-color:#fbfbfb;
}


.background {
    width: 430px;
    height: 500px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    right: 50%
}

div .background .shape {
    width: 150px;
    height: 300px;
    position: absolute;
    border-radius: 50%;
    bottom: 0px;
}

div > .background > .shape > .shape1 {
    background: linear-gradient(to right, rgba(255, 200, 0, 0.8), rgba(255, 204, 153, 0.8));
    left: -50px;
    bottom: -400px;
}

.background .shape .shape2 {
    background: linear-gradient(to right, rgba(255, 200, 0, 0.8), rgba(255, 204, 153, 0.8));
    left: -150px;
    bottom: -630px;
}

.background .shape .shape3 {
    background: linear-gradient(to right, rgba(255, 81, 47, 0.8), rgba(240, 152, 25, 0.8));
    right: -120px;
    bottom: -659px;
}

.background .shape .shape4 {
    background: linear-gradient(to right, rgba(255, 81, 47, 0.8), rgba(240, 152, 25, 0.8));
    right: -120px;
    bottom: -659px;
}


.container {

}
form {
    padding-top: 35px;
    width: 40vw;
    height: fit-content;
    background-color: rgba(255,255,255,0.13);
    position: relative;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    /*  box-shadow: 0 0 40px rgba(8,7,16,0.6);*/
    padding: inherit;
    bottom: 5%;
    border: 1px #ebebeb solid;
    background-color: white;
    margin-bottom: 35px;
    padding: 25px;
    margin-top: 25px;
}
    form * {
        font-family: "Poppins", sans-serif;
        color: #ff8c00;
        letter-spacing: 0.5px;
        outline: none;
        border: none;
    }

    form h3 {
        font-size: 32px;
        font-weight: 500;
        line-height: 42px;
        text-align: center;
    }

label {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

input {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgb(255,255,255,0.4);
    border-radius: 2rem;
    border: 1px solid #ff512f;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 300;
    color: black;
}

    input.radio-class {
        height: 30px;
    }

::placeholder {
    color: lightslategray;
    padding-left: 10px;
}



#btnkayıt {
    margin: auto;
    justify-content: center;
    align-items: center;
    align-content: center;

    max-width: 300px;
    background-color: #ff8c00;
    padding:12px;
    font-size: 14pt;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer!important;
    animation: mymove 2s infinite;
    color: white;
    transition:all .5s ease-in-out;
    padding-left:45px;
    padding-right:45px;
    width:100%;

}



form a {
    text-decoration:none;
    color:#403e3e;
    font-weight:bold;

}

form a i {
    text-decoration: none;
    color: #403e3e;
    font-weight: bold;
}

#btnkayıt:hover {

    background-color: #e5820a;

}

#iconkayıt {
    margin-left: 10rem;
    margin-right: 11rem;
    margin-bottom: 5rem;
    display: flex;
    align-content: flex-start;
    justify-content: center;
    background-color: none;
}

    #iconkayıt div {
        width: 4rem;
        height: 2rem;
        font-size: 1.5rem;
        line-height: 1.5;
        text-align: center;
        border-radius: 3rem;
        padding: 5px 5px 5px 5px;
        color: #eaf0fb;
        text-align: center;
        margin-bottom: 0; 
    }


    #iconkayıt div {
        background: #ff512f;
        width: 6rem;
        border-radius: 10px;
        padding: 5px 5px 5px 5px;
        background-color:rgba(255,255,255,0.27);
        color: #eaf0fb;
        text-align: center;
        font-size: 1.5rem;
        animation: .2s ease-in-out;
    }

        #iconkayıt div:hover {
            background-color: rgba(255,255,255,0.47);
            color: #ff512f;
            text-align: center;
            border-radius: 10px;
            animation: .4s ease-in-out;
            border: 5px solid #ff512f;
        }


.iconkayıt-item {
    transition: .5s;
    background-color: transparent;
}

@media (max-width: 768px) {
    form {
        width: 80vw;
        border-radius: 10px;
    }
}
/* Tablet ekranlar için düzenleme */
@media screen and (max-width: 768px) {


    .container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }


    header, main, footer {
        text-align: center;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    body {
      
    }
}


/* Mobil ekranlar için düzenleme */
@media screen and (max-width: 480px) {
    header, main, footer {
        text-align: left; /* Örnek: Metin hizalamasını sol kenara kaydır */
        padding: 10px; /* Örnek: Kenar boşluğunu artır */
    }

    img {
        max-width: 80%; /* Örnek: Görüntü genişliğini küçült */
        margin: 10px auto; /* Örnek: Görüntüyü merkezden hizala ve kenar boşluğu ekle */
    }

    body {
        display: block; /* Örnek: Blok düzeni kullan */
        height: auto; /* Örnek: Otomatik yükseklik */
    }
}