/* Set the background color to a light gray */
body {
    background-color: #f5f5f5;
    font-family: "Open Sans", sans-serif;
    color: #333;
}
/* Create a container to center the content on the page */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
text-align: center;
}

/* Style the headers */
h1 {
margin-top: 0;
margin-bottom: 30px;
font-size: 3em;
font-weight: 300;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #333;
}

/* Style the form elements */
.form-group {
margin-bottom: 20px;
}

label {
font-weight: 600;
display: block;
margin-bottom: 10px;
}

input[type="text"], input[type="password"], input[type="number"] {
text-align: center;
width: 50%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border:2px solid #ccc;
border-radius: 4px;
}

/* Add some spacing and styling to the form container */
.password-security-form, .password-generator-form {
    background-color: #fff;
    box-shadow: 0px 0px 10px #ccc;
    padding: 20px;
    margin-bottom: 20px;
    }
    
    /* Style the buttons */
    .btn {
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    }
    
    .btn-primary {
    background-color: #4CAF50;
    color: white;
    }
    
    .btn-success {
    background-color: #008CBA;
    color: white;
    }
