*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
input[type="range"] {
    width: 100%;
    cursor: pointer;
    accent-color: #1a6be4;
}

body{
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right bottom, #ffa385, hsla(264, 90%, 47%, 0.588));
    color: #333333;
    font-weight: 600;
}
.container{
    background: rgba(213, 60, 60, 0.1);
    padding: 28px 36px;
    border-radius: 10px;
    box-shadow: 8px 8px 12px rgba(237, 15, 207, 0.5);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.container:hover {
    box-shadow: 12px 12px 16px rgba(237, 15, 207, 0.7);
}
.container h1{
    font-size: 1.4rem;
    margin-block: 10px;
    display: flex;
    align-items: center;
    color: #222222;
    justify-content: center;
    font-weight: 650;
}
.inputBox{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.inputBox span {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 28px;
    color: #1a6be4;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}
.passBox{
    border: none;
    outline: none;
    background-color: rgb(254, 255, 253);
    padding: 10px;
    border-radius: 5px;
    width: 300px;
    font-size: 20px;
    margin-block: 10px;
    text-overflow: ellipsis;
}

.passBox:focus {
    box-shadow: 0 0 0 3px rgba(26, 107, 228, 0.5);
}
.row{
    display: flex;
    margin-block: 10px;
}
.row p , .row label{
    flex-basis: 100%;
    font-size: 18px;
}
.row input[type="checkbox"]{
    width: 20px;
    height: 20px;
    accent-color: #1a6be4;
}
.genBtn{
    border: none;
    background-color: #1a6be4;
    padding: 12px 24px;
    color: white;
    font-weight: 700;
    margin-block: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.genBtn:hover{
    background-color: rgb(0, 0, 255);
    transform: scale(1.05);
}
.passBox {
    width: 100%;
    max-width: 300px;
}
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: linear-gradient(to right, #1a6be4, #ffa385);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 -2px 12px rgba(26,107,228,0.15);
    z-index: 10;
}

.footer-content span {
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    display: inline-block;
    vertical-align: middle;
}
