body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}
h3{
    text-align: center;
}
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.show-password {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.show-password input[type="checkbox"] {
    margin-right: 5px;
}

.form-group-remember {
    margin-top: 10px;
    display: none;
    align-items: center;
}

.form-group-remember input[type="checkbox"] {
    margin-right: 5px;
}

button {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    body{
        margin: 20px;
        height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .login-container {
        padding: 15px;
    }

    button {
        font-size: 16px;
    }
}
