form {
    display: contents;
}

.login-btn {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    transition: all 0.2s ease;
    z-index: 1000;
    text-decoration: none;
    color: white;
    cursor:pointer;
}

.login-btn i {
    font-size: 26px;
    color: #00d4ff;
}

.login-btn:hover,
.login-btn:active {
    background: rgba(255,255,255,0.2);
    border-color: #00d4ff;
    transform: scale(1.1);
}
