@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(169, 169, 169);
    background-image: url('../images/arkaplan.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.wrapper {
    width: 420px;
    background-color: rgba(255, 0, 0, 0.668);
    color: white;
    padding: 30px 40px;
    border-radius: 15px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;

}

.wrapper:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.69);
}

.wrapper h1 {
    font-size: 30px;
    text-align: center;
    color: black;
}

.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 35px;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: rgb(0, 0, 0);
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.remember-forgot a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.remember-forgot a:hover {
    color: rgb(0, 0, 0);
    text-decoration: underline;
}

.wrapper .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
    color: rgb(0, 0, 0);
}

.wrapper .btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(20, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wrapper .btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgb(255, 0, 0);
    transition: width 0.5s ease;
    z-index: -1;
}

.wrapper .btn:hover:before {
    width: 100%;
}

.wrapper .btn:hover {
    box-shadow: 0 0 10px rgba(20, 0, 0, 0.3);
    color: white;
}

.logo {
    height: 100;
    width: auto !important;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.cizgi {
    margin-bottom: 15px;
    padding: 0px;
    height: 3px;
   
    background-color: rgba(0, 0, 0, 0.215);

}

.checkbox-remember {
    margin-right: 5px;
    display: inline-block;
}

.back-button {
    position: absolute;
    top: 20px; /* Üstten boşluk */
    left: 20px; /* Soldan boşluk */
}

.back-button a {
    display: inline-block;
    font-size: 24px; /* İkon boyutu */
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}



.back-button i {
     /* İkon yüksekliği */
    
    justify-content: center;
    align-items: center;
    font-size: 30px; /* İkon boyutu */
}