body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}


header h1{
    color: white;
    font-size: 32px;
}

header p{
    color: white;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="range"] {
    width: 100%;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
}

#generateBtn {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
}

#generateBtn:hover {
    background-color: #218838;
}

#pinOutput {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    word-break: break-all;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 20px 0;
}

#copyBtn {
    margin-top: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#copyBtn:hover {
    background-color: #0056b3;
}

.strength-indicator {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.strength-indicator span {
    padding: 2px 5px;
    border-radius: 3px;
}

.weak {
    color: #dc3545;
    background-color: #f8d7da;
}

.medium {
    color: #ffc107;
    background-color: #fff3cd;
}

.strong {
    color: #28a745;
    background-color: #d4edda;
}

.range-value {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background: #ccc;
    padding: 2px 5px;
    border-radius: 5px;
    width: 60px;
    display: inline-block;
    text-align: center;
}

.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #2c3e50;
    color: #fff;
    box-sizing: border-box;
}

footer a {
    color: #1489f7;
    text-decoration: none;
}

footer p{
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

.toolWrapper{
    border: 1px solid #8b8b8b;
    padding: 15px;
    border-radius: 15px;
    margin: 0 0 60px 0;
    background: #f7f7f7;
}