:root{
    --blak: rgb(5, 15, 31)222;
}

* {
    box-sizing: border-box;
    outline: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

html {
    font-size: 10px;
}

.bedarbox{
   width: 100%;
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: black;
   color: aliceblue;
}

.box{
    background-color: #2e2e2e70;
    backdrop-filter: blur(100px);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid #00b7ff;
    transition: all 0.5s;
}

.box:hover{
    box-shadow: 
        0 0 5px #00b7ff,
        0 0 10px #00b7ff,
        0 0 20px #00b7ff,
        0 0 40px #00b7ff;
}

.titel{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.titel h1{
    font-size: 2.8rem;
}

.titel p{
    font-size: 1.8rem;
}

.in_box{
    display: flex;
    gap: 10px;
}

.in_box input{
    border: none;
    font-size: 1.5rem;
    padding: 9px;
    border-radius: 7px;
    font-family: inherit;
    transition: all 0.5s;
    width: 100%;
}

.in_box input:focus{
    border: solid 2px rgb(0, 119, 255);
}

.btn{
    width: 60px;
    font-family: inherit;
    font-size: 1.5rem;
    border-radius: 7px;
    background-color: rgb(69, 156, 255);
    border: none;
    cursor: pointer;
    transition: all 0.5s;
}

.btn:hover{
        background-color: rgb(0, 119, 255);
}

.box_ka{
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.267);
    padding: 10px;
    border-radius: 7px;
}

.box_k{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
}

.Box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 90px;
    font-size: 1.8rem;
    background-color: #31313179;
    padding: 10px;
    border-radius: 10px;
}

.BoxRe{
    display: flex;
    gap: 10px;
}

input[type="checkbox" i]{
    border: none;
    border-radius: 50px;
}

.Box_btn{
    padding: 5px;
    font-family: inherit;
    border: none;
    border-radius: 7px;
    background-color: #ff7d7d;
    cursor: pointer;
    transition: all 0.5s;
}

.Box_btn:hover{
    background-color: #ff0202;
}