body {
    font-family: "Open Sans", sans-serif;
    height: 100vh;
    background: url("../images/background.jpg") 50% fixed;
    background-size: cover;
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
    background: rgba(4, 40, 68, 0.85);
}

.login {
    border-radius: 2px 2px 5px 5px;
    padding: 10px 20px 20px 20px;
    width: 90%;
    max-width: 320px;
    background: #ffffff;
    position: relative;
    padding-bottom: 80px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}

/* ... Önceki tüm stil kurallarınız burada yer almalı ... */

.login input:not([type=checkbox]) {
    display: block;
    padding: 15px 10px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid #ddd;
    transition: border-width 0.2s ease;
    border-radius: 2px;
    color: #ccc;
}

/* ... Diğer stil kurallarınız ... */

/* Mobil cihazlar için stil kuralları */
@media only screen and (max-width: 600px) {
    .login {
        padding: 10px;
        width: 100%;
        max-width: none;
    }

    .login input:not([type=checkbox]) {
        padding: 10px;
    }

    /* ... Burada mobil cihazlar için diğer stil kurallarını ekleyin ... */
}

/* Tablet cihazlar için stil kuralları */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .login {
        width: 80%;
    }

    /* ... Burada tablet cihazlar için diğer stil kurallarını ekleyin ... */
}

/* Masaüstü cihazlar için stil kuralları */
@media only screen and (min-width: 1025px) {
    .login {
        max-width: 320px;
    }

    /* ... Burada masaüstü cihazlar için diğer stil kurallarını ekleyin ... */
}

footer {
    display: block;
    padding-top: 50px;
    text-align: center;
    color: #ddd;
    font-weight: normal;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
    font-size: 0.8em;
}

/* ... Diğer stil kurallarınız ... */

.login button {
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    background: #2196F3;
    color: #fff;
    display: block;
    border: none;
    margin-top: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    max-height: 60px;
    border: 0px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 2px 2px;
    transform: rotateZ(0deg);
    transition: all 0.1s ease-out;
    border-bottom-width: 7px;
}

/* ... Diğer stil kurallarınız ... */

