﻿
body {
    /*background: linear-gradient(to right, rgba(255, 200, 0, 0.8), rgba(255, 204, 153, 0.8));*/
    margin: 0;
    padding: 0;
    font-size: 16px;
  background-color:#fbfbfb;
}

.background {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.background {
    height: auto;
    position: static;
    transform: none;
    left: auto;
    right: auto;
}

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

        .background .shape .shape1,
        .background .shape .shape2 {
            background: linear-gradient(#216c08, #62f707);
        }

        .background .shape .shape3,
        .background .shape .shape4 {
            background: linear-gradient(to right, #ff512f, #f09819);
            width: 120px;
            height: 120px;
            border-radius: 30%;
        }

.container {

}



form {
    padding-top:35px;
   
    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;
 
    border:1px #ebebeb solid;
    background-color:white;
    margin-bottom:35px;
    padding:25px;
    margin-top:25px;
    max-width:500px;
    margin:0px auto;
   
}

    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: 30px; 
    width:100%;
 
    background-color: rgb(255, 255, 255, 0.4);
    border-radius: 2rem;
    border: 1px solid #ff512f;
    padding: 0 10px;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 300;
    color: black;
   
}
    input[type=text], input[type=tel], input[type=email], input[type=password] {
        margin-top: 18px;
    }
    input.radio-class {
        height:10%; 
        width: 10%; 
        margin-left: 5%; 
    }



   h4.Uyarı {
    color: black; 
    font-size:xx-small; 
    margin-left:5px;
}

    h4.Uyarı .underlined {
        text-decoration: underline;
    }
::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: 20px auto;
    display: flex;
    align-content: flex-start;
    justify-content: center;
    background-color: none;
}

    #iconkayıt div {
        width: 6rem;
        height: 3rem;
        font-size: 1.5rem;
        line-height: 1.5;
        text-align: center;
        border-radius: 3rem;
        padding: 5px;
        color: #eaf0fb;
        background: #ff512f;
    }

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

#bodykayıt {
    padding-bottom: 0;
}

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

@media only screen and (max-width: 600px) {
    .background .shape {
        display: none;
    }

    form {
      
        margin-top: 20px;
       
    }

    #iconkayıt {
        flex-direction: column;
        margin: 0;
    }

        #iconkayıt div {
            margin-bottom: 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 */
    }
}