.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
}

.modal-content {
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 8% auto;
    padding: 30px;
    border-radius: 16px;
    width: 350px;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 8px;
    outline: none;
}

.btn {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    border: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.btn:hover {
    opacity: 0.9;
}

.link-btn {
    background: none;
    border: none;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}

.toggle-eye {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 12px;
}
.input-wrapper {
    position: relative;
}