 
.pulse-button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #1A2543;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s;
}

 
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 123, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

 
.pulse-button:hover {
    animation: pulse 1.5s infinite;
}



.password-container {
    display: flex;
    align-items: center;
    position: relative;
     width: 100%;
}

input[type="password"] {
   width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
        outline:none;
}

p{
    background: none;
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

button:focus {
    outline: none;
}

.fa-eye, .fa-eye-slash {
    font-size: 18px;
    color: #666;
}


.invisible {
font-size: 0px;
color: white;
background-color: none;
border: none;
outline: none;

}

