/* General Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: black;
    padding: 10px;
    text-align: center;
    display: none; /* Remove the nav bar */
}

.hero {
    background-color: black;
    padding: 200px 0;
    text-align: center;
    color: white;
    background-image: url('Password.png');
    background-size: cover; /* Ensures the image covers the entire page */
    background-position: center; /* Centers the image on the page */
    background-attachment: fixed; 
    text-shadow: 
  -1px -1px 0 black, /* Top-left */
   1px -1px 0 black, /* Top-right */
  -1px  1px 0 black, /* Bottom-left */
   1px  1px 0 black; /* Bottom-right */
}
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.hero::before {
    background: inherit; /* Inherit the background image */
    filter: brightness(0.5); /* Reduces the brightness of the background */
    z-index: 1; /* Ensures the overlay is above the background but below text */
  }
.password-container {
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
}

.password-input-container {
    position: relative;
    width: 100%;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin:5px;
}

.eye-icon {
    position: absolute;
    top: 12px;
    right: 35px;
    cursor: pointer;
}

.strength-indicator {
    margin-top: 20px;
    margin:5px;

}

#strengthSlider {
    width: 100%;
}

.strength-bar {
    height: 10px;
    margin-top: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin:5px;
}

#strengthText {
    font-size: 16px;
    margin-top: 15px;
}

#criteriaChecklist ul {
    list-style-type: none;
    margin-top: 20px;
    padding: 0;
    border:2px solid rgb(15, 13, 43);
    padding:20px;
    box-shadow:0 10px 10px rgba(0, 0, 0, 0.7);
    font-family: sans-serif;
}

#criteriaChecklist li {
    margin: 10px 0;
    display: inline-block; /* Inline block for checkboxes */
    text-align: left;
    width: 48%; /* Adjust width to make checkboxes inline */
}

#criteriaChecklist li input[type="checkbox"] {
    margin-right: 10px;
}

input[type="checkbox"]:checked + span {
    color: green;
}

input[type="checkbox"]:disabled + span {
    color: gray;
}

#celebration {
    font-size: 24px;
    color: green;
    margin-top: 20px;
    display: none;
}

/* Footer */
footer {
    background-color: #700707;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-family:sans-serif;

}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    color: #0602ff;
}
.lewi{
    margin-top:25px;
}
/* Responsive Design */
@media only screen and (max-width: 768px) {
    .hamburger {
        display: none; /* No hamburger button */
    }
    #criteriaChecklist{
    padding:20px;
    display:inline-block;
    margin-top:0px;
    color:black;
    font-family:sans-serif;
}
    input {
        width: 90%;
    }

    #criteriaChecklist li {
        width: 100%; /* Stack checkboxes vertically in smaller screens */
    }
    .eye-icon {
        position: absolute;
        top: 12px;
        right: 45px;
        cursor: pointer;
    }
    .content{
        width:95%;
    }
    .column {
        flex: 100%;
        margin-bottom: 15px;
    }
}
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px;

}

.column {
    flex: 1;
    min-width: 250px;
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 30PX;
}
.column h2{
    margin-bottom: 10px;;
}
.last{
    padding: 20px; 
    background-color: #f4f4f4; 
    border-radius: 5px; 
    border: 1px solid #85c71a;
    line-height:30px;
    width:90%;
    text-align: justify;
    margin: 20px  auto;
    box-shadow:0 10px 10px rgba(0, 0, 0, 0.7);


}

/* Content Section */
section.content {
    background-color: #fff;
    padding: 30px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin:0 auto;
line-height:30px;
}

section.content h2 {
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 20px;

}

section.content p {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: justify;
}

a:hover {
    text-decoration: underline;
}
footer a{
    margin-right:5px;
    font-weight: 200;
}
.fa-instagram{
display:inline-block;
}
.fa-instagram:hover{
transform:scale(1.5);
color:white;
    }
.fa-youtube:hover{
        transform:scale(1.5);
        color:white;
}
