#adminlogin {
    position: relative;
    background: linear-gradient(0, rgba(207, 43, 194, 0.624), #ffffffd7);
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 2000px;

}

.box {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, .4);
    border: solid 1px rgba(0, 0, 0, .2);
    border-radius: 15px;
    transition:
        transform .9s cubic-bezier(.77, 0, .175, 1),
        opacity .9s ease,
        filter .9s ease;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: rotateY(0deg) scale(1);
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    justify-content: space-evenly;

}

.show {
    opacity: 1;
    filter: blur(0);
    z-index: 3;
    transform: scale(1);
}

.hide {
    transform: rotateY(-90deg) scale(.8);
    opacity: 0;
    filter: blur(10px);
    transform: scale(.8);
}


#forget form {
    row-gap: 45px;
}

.box form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.box form button {
    width: 100%;
    padding: 10px 15px;
    background: transparent;
    border: none;
    border-bottom: solid 1px rgba(0, 0, 0, .200);
    cursor: pointer;
    margin-bottom: 25px;
    font-size: 18px;
    font-family: "Roboto Condensed", sans-serif;
}

.baslik h1 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 100;
    margin-bottom: 20px;
}

.inputs {
    position: relative;
    width: 300px;

}

.inputs input:focus+span,
.inputs input:valid+span {
    top: 0;
}

.inputs input {
    width: 100%;
    padding: 12px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-bottom: solid 1px black;
    color: rgb(0, 0, 0);
    outline: none;
}

.inputs i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(0, 0, 0);
}

.inputs span {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    transition: all 0.3s ease;
}



.butonlar {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
}

.butonlar a {
    display: inline-block;
    color: black;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    border-bottom: solid 1px black;
    font-family: "Roboto Condensed", sans-serif;

}