#btn{
    display: block;
    background: linear-gradient(to right, #6a5cf2, #00b0ff);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1em;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 50%;
    margin-top: 20px;
}
#btn:hover {
    background: linear-gradient(to right, #7f61c8, #00d1d1);
    transform: scale(1.05);
}
#btn:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 180, 255, 0.6);
}
#btn {
    display: block;
    text-align: center;
}
h1 {
    font-size: 1.8em;
    font-weight: bold;
    color: #5e4d88;
    text-align: center;
    margin-bottom: 20px;
    display: block;
}
#password {
    text-align: left;
    display: block;
    width: 75vw;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    background: linear-gradient(135deg, #C469FD, #E3D9D9);
    transition: all 0.3s ease;
    color: yellow;
}
#password:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 180, 255, 0.6);
    border-color: #00b0ff;
}
#pass {
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f0e6f6, #d1f7f7);
    color: #333;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
}