* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.background-container {
    background-image: url('https://thewowstyle.com/wp-content/uploads/2015/01/nature-wallpaper-27.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.wrapper {
    background-color: rgba(49, 49, 43, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 400px;
}


.input-fields input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}


.input-fields button {
    padding: 10px 20px;
    border: none;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.input-fields button:hover {
    background-color: #0056b3;
}


.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
    font-size: 14px;
}
.remember{
    margin-right:80px;
}

.options label {
    white-space: nowrap;
}


.options input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 5px;
}


.forgot-password {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

.forgot-password:hover {
    text-decoration: underline;
}


@media screen and (max-width: 768px) {
    .wrapper h1 {
        font-size: 20px;
    }

    .input-fields input,
    .input-fields button {
        font-size: 14px;
        padding: 8px;
    }

    .options {
        flex-direction: column;
        align-items: flex-start;
        font-size: 12px;
    }

    .forgot-password {
        margin-top: 10px;
    }
}


@media screen and (max-width: 480px) {
    .wrapper {
        padding: 15px;
    }

    .input-fields input,
    .input-fields button {
        font-size: 12px;
        padding: 6px;
    }

    .options {
        font-size: 11px;
    }

    .forgot-password {
        font-size: 12px;
    }
}


.input-fields button {
    touch-action: manipulation;
}