﻿body {
    background-color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.divCss {
    width: 320px;
    height: 450px;
    background-color: #5E5E5E;
    position: relative;
    border: 5px inset white;
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.lblGirisCss {
    position: absolute;
    top: 35px;
    width: 100%;
    text-align: center;
    color: #1E2026;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 2px;
}


.txtEmailCss, .txtKullaniciAdiCss, .txtSifreCss {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 230px;
    height: 38px;
    border-radius: 10px;
    border: none;
    border-bottom: 3px solid white;
    background-color: #1E2026;
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 10px center;
    padding-left: 35px;
    outline: none;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.txtEmailCss { 
    top: 100px; 
    background-image: url("../images/envelope-open-regular.png"); 
}
.txtKullaniciAdiCss { 
    top: 165px; 
    background-image: url("../images/user-solid.png"); 
}
.txtSifreCss { 
    top: 230px; 
    background-image: url("../images/lock-solid.png"); 

}

.btnGirisCss {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 300px;
    width: 230px;
    height: 45px;
    border: 2px solid white;
    background-color: #1E2026;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .btnGirisCss:hover {
        background-color: white;
        color: #1E2026;
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

.lblKayitolCss {
    position: absolute;
    bottom: 25px;
    right: 30px;
    color: #1E2026;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.2s;
}

    .lblKayitolCss:hover {
        color: white;
        text-decoration: underline;
    }
